Fix a typo, sorry!

This commit is contained in:
Yusuke Endoh 2024-09-17 23:07:44 +09:00
parent fd5e583990
commit 82151a8630

View File

@ -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