diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-04-08 05:04:17 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-04-08 05:04:17 +0000 |
commit | 0d382f4878e176a286344fd6c8da27d0a6f91175 (patch) | |
tree | 2e230931dc06e845214d76820abce2547e789a34 | |
parent | 622193d32a5ca27074acd072b655e4037f845dec (diff) |
* test/ruby/test_symbol.rb: fix syntax error.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50183 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 |