diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/ruby/test_symbol.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Wed Apr 8 14:03:47 2015 Koichi Sasada <[email protected]> + + * test/ruby/test_symbol.rb: fix syntax error. + Wed Apr 8 13:01:06 2015 Nobuyoshi Nakada <[email protected]> * 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 |