aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ruby/test_method.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 82a1b71d32..6647ff86f4 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -1089,10 +1089,10 @@ class TestMethod < Test::Unit::TestCase
f = c.new.method(:f)
assert_raise(TypeError) {
- (f << 5).call(2)
+ f << 5
}
assert_raise(TypeError) {
- (f >> 5).call(2)
+ f >> 5
}
end