summaryrefslogtreecommitdiff
path: root/spec/ruby/core
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core')
-rw-r--r--spec/ruby/core/proc/source_location_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/proc/source_location_spec.rb b/spec/ruby/core/proc/source_location_spec.rb
index 69b4e2fd82..18f1ca274c 100644
--- a/spec/ruby/core/proc/source_location_spec.rb
+++ b/spec/ruby/core/proc/source_location_spec.rb
@@ -61,7 +61,7 @@ describe "Proc#source_location" do
ruby_version_is("4.0") do
proc { true }.source_location.should == [__FILE__, __LINE__, 11, __LINE__, 19]
Proc.new { true }.source_location.should == [__FILE__, __LINE__, 15, __LINE__, 23]
- -> { true }.source_location.should == [__FILE__, __LINE__, 8, __LINE__, 17]
+ -> { true }.source_location.should == [__FILE__, __LINE__, 6, __LINE__, 17]
end
end
@@ -98,7 +98,7 @@ describe "Proc#source_location" do
location.should == ["foo", 100]
end
ruby_version_is("4.0") do
- location.should == ["foo", 100, 2, 100, 5]
+ location.should == ["foo", 100, 0, 100, 5]
end
end
end