From 5ed8ca14526539b31d6089a91585b9301097f380 Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 16 Oct 2012 00:40:26 +0000 Subject: [PATCH] * test/ruby/test_regexp.rb (TextRegexp#test_raw_hyphen_and_tk_char_type_after_range): use Regexp.new instead of literal to ignore a parser warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ test/ruby/test_regexp.rb | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 26463851aa..af89d2e169 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Oct 16 09:40:04 2012 NAKAMURA Usaku + + * test/ruby/test_regexp.rb + (TextRegexp#test_raw_hyphen_and_tk_char_type_after_range): use + Regexp.new instead of literal to ignore a parser warning. + Tue Oct 16 09:30:30 2012 NAKAMURA Usaku * test/ruby/test_regexp.rb diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb index 781e8e11c5..0825e945fd 100644 --- a/test/ruby/test_regexp.rb +++ b/test/ruby/test_regexp.rb @@ -914,6 +914,7 @@ class TestRegexp < Test::Unit::TestCase def test_raw_hyphen_and_tk_char_type_after_range bug6853 = '[ruby-core:47115]' - check(/[0-1-\s]/, [' ', '-'], ['2', 'a'], bug6853) + # use Regexp.new instead of literal to ignore a parser warning. + check(Regexp.new('[0-1-\\s]'), [' ', '-'], ['2', 'a'], bug6853) end end