summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 08:38:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-16 08:38:27 +0000
commitbe2dc4434a3f854d32b24fe08fbbc28116df7a7f (patch)
tree6425cdbe23523a2c3763ac80bc809b29c4b30886 /test
parent2b906bf2267dc2d9a6c33a6338d405f2346a2aaf (diff)
fix typo
* test/ruby/test_module.rb (test_method_redefinition): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 16f9850c18..88b7dd1572 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -990,7 +990,7 @@ class TestModule < Test::Unit::TestCase
Module.new do
define_method(:foo) do end
alias bar foo
- alias barf oo
+ alias bar foo
end
end
assert_equal("", stderr)