summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-11 10:53:52 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-11 10:53:52 +0000
commit7467524ca29657897f8439c75fcde65a0b2c3b6c (patch)
tree71f525bacfa1e99872a6f4e15dabb8bddc20ddf8 /test
parent8b817f1a4e1426b2df1376a027e84611a3f5509d (diff)
fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_method.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index d786c1d5f9..f4055e7950 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -109,7 +109,7 @@ class TestMethod < Test::Unit::TestCase
assert_equal(o, m.receiver)
assert_equal(:foo, m.name)
assert_equal(class << o; self; end, m.owner)
- assert_equal("foo", m.unbind.name)
+ assert_equal(:foo, m.unbind.name)
assert_equal(class << o; self; end, m.unbind.owner)
end