summaryrefslogtreecommitdiff
path: root/test/ruby/test_basicinstructions.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-07 01:05:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-07 01:05:50 +0000
commitcbb86ec6fe234f2d6188980ff1854026822cea10 (patch)
treea42d9224046d118ec0ba4175bfe42bb48e3a5555 /test/ruby/test_basicinstructions.rb
parent90eb265f8686a5ea14cf6c745600361300b84e4f (diff)
test_basicinstructions.rb: fix typo
* test/ruby/test_basicinstructions.rb (test_send_opassign): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39123 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_basicinstructions.rb')
-rw-r--r--test/ruby/test_basicinstructions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_basicinstructions.rb b/test/ruby/test_basicinstructions.rb
index 4aa164e0c4..bb82161726 100644
--- a/test/ruby/test_basicinstructions.rb
+++ b/test/ruby/test_basicinstructions.rb
@@ -603,7 +603,7 @@ class TestBasicInstructions < Test::Unit::TestCase
assert_equal 4, x[0]
end
- def test_send_opassing
+ def test_send_opassign
bug7773 = '[ruby-core:51821]'
x = OP.new
assert_equal 42, x.foo = 42, bug7773