summaryrefslogtreecommitdiff
path: root/spec/ruby/core/unboundmethod/source_location_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/unboundmethod/source_location_spec.rb')
-rw-r--r--spec/ruby/core/unboundmethod/source_location_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/unboundmethod/source_location_spec.rb b/spec/ruby/core/unboundmethod/source_location_spec.rb
index 60047787db..b5e6413816 100644
--- a/spec/ruby/core/unboundmethod/source_location_spec.rb
+++ b/spec/ruby/core/unboundmethod/source_location_spec.rb
@@ -9,7 +9,7 @@ describe "UnboundMethod#source_location" do
it "sets the first value to the path of the file in which the method was defined" do
file = @method.source_location.first
file.should be_an_instance_of(String)
- file.should == File.dirname(__FILE__) + '/fixtures/classes.rb'
+ file.should == File.realpath('../fixtures/classes.rb', __FILE__)
end
it "sets the last value to a Fixnum representing the line on which the method was defined" do