1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_syntax.rb: fix typo in test

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2015-12-13 11:27:45 +00:00
parent 99ac392284
commit ed7620434e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sun Dec 13 20:26:30 2015 Yuki Yugui Sonoda <yugui@yugui.jp>
* test/ruby/test_syntax.rb: fix typo in test
Sun Dec 13 20:12:14 2015 Yuki Yugui Sonoda <yugui@yugui.jp>
* parse.y (parse_percent): Allow %-literals in labeled arg as

View file

@ -336,7 +336,7 @@ WARN
end
def test_percent_string_after_label
bug11812 = ['ruby-core:72084']
bug11812 = '[ruby-core:72084]'
assert_valid_syntax('{label:%w(*)}', bug11812)
assert_valid_syntax('{label: %w(*)}', bug11812)
end