summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2024-09-17 23:07:44 +0900
committerYusuke Endoh <mame@ruby-lang.org>2024-09-17 23:07:44 +0900
commit82151a86305d79cd2301d92258462f25fc28ac80 (patch)
treec7cff9596f80f469be9fade70aa82ca3e4391c81 /test/ruby
parentfd5e583990330f2d84d05d1ae1ceea2a472b6352 (diff)
Fix a typo, sorry!
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_syntax.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_syntax.rb b/test/ruby/test_syntax.rb
index 4ed28320b3..5c341a69b7 100644
--- a/test/ruby/test_syntax.rb
+++ b/test/ruby/test_syntax.rb
@@ -332,7 +332,7 @@ class TestSyntax < Test::Unit::TestCase
o = KW2.new
begin
verbose_bak, $VERBOSE = $VERBOSE, nil
- assert_equal([23, 2], eval("o.kw(**{k1: 22}, **{k1: 23}"), bug10315)
+ assert_equal([23, 2], eval("o.kw(**{k1: 22}, **{k1: 23})"), bug10315)
ensure
$VERBOSE = verbose_bak
end