diff options
| author | Yusuke Endoh <mame@ruby-lang.org> | 2024-09-17 23:07:44 +0900 |
|---|---|---|
| committer | Yusuke Endoh <mame@ruby-lang.org> | 2024-09-17 23:07:44 +0900 |
| commit | 82151a86305d79cd2301d92258462f25fc28ac80 (patch) | |
| tree | c7cff9596f80f469be9fade70aa82ca3e4391c81 /test/ruby | |
| parent | fd5e583990330f2d84d05d1ae1ceea2a472b6352 (diff) | |
Fix a typo, sorry!
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_syntax.rb | 2 |
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 |
