diff options
| author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-11 10:53:52 +0000 |
|---|---|---|
| committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-11 10:53:52 +0000 |
| commit | ee4ecf35e31d40fb950a1a9f44565e772cd00441 (patch) | |
| tree | 71f525bacfa1e99872a6f4e15dabb8bddc20ddf8 /test/ruby | |
| parent | b720f9106a94769cb10cf71cbd117f0dd3e56249 (diff) | |
| download | ruby-ee4ecf35e31d40fb950a1a9f44565e772cd00441.tar.gz ruby-ee4ecf35e31d40fb950a1a9f44565e772cd00441.tar.xz ruby-ee4ecf35e31d40fb950a1a9f44565e772cd00441.zip | |
fix typo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_method.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index d786c1d5f..f4055e795 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 |
