diff --git a/ChangeLog b/ChangeLog index c647f30964..037ac6e48c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Apr 8 14:03:47 2015 Koichi Sasada + + * test/ruby/test_symbol.rb: fix syntax error. + Wed Apr 8 13:01:06 2015 Nobuyoshi Nakada * hash.c (rb_any_hash): Symbols are compared by the identities diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb index 7f278ad4d7..66c62cb298 100644 --- a/test/ruby/test_symbol.rb +++ b/test/ruby/test_symbol.rb @@ -255,6 +255,6 @@ class TestSymbol < Test::Unit::TestCase assert_nothing_raised(RuntimeError, bug11035) { h['bar'.to_sym] = 2 } - end - end; + end; + end end