1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Proc.new: change deprecation warning for clarity (issue #15539)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2019-04-13 00:56:12 +00:00
parent 95a8276630
commit d3da5fbd30
3 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ describe "Kernel#proc" do
-> {
some_method { "hello" }
}.should complain(/tried to create Proc object without a block/)
}.should complain(/Capturing the given block using Proc.new is deprecated/)
end
end