aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/proc/shared/to_s.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/proc/shared/to_s.rb')
-rw-r--r--spec/ruby/core/proc/shared/to_s.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/proc/shared/to_s.rb b/spec/ruby/core/proc/shared/to_s.rb
index 59fcf5bef0..a4d1d5d630 100644
--- a/spec/ruby/core/proc/shared/to_s.rb
+++ b/spec/ruby/core/proc/shared/to_s.rb
@@ -11,11 +11,11 @@ describe :proc_to_s, shared: true do
describe "for a proc created with lambda" do
it "returns a description including '(lambda)' and optionally including file and line number" do
- lambda { "hello" }.send(@method).should =~ /^#<Proc:([^ ]*?)(@([^ ]*)\/to_s\.rb:10)? \(lambda\)>$/
+ -> { "hello" }.send(@method).should =~ /^#<Proc:([^ ]*?)(@([^ ]*)\/to_s\.rb:10)? \(lambda\)>$/
end
it "has a binary encoding" do
- lambda { "hello" }.send(@method).encoding.should == Encoding::BINARY
+ -> { "hello" }.send(@method).encoding.should == Encoding::BINARY
end
end