aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_regexp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_regexp.rb')
-rw-r--r--test/ruby/test_regexp.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index 5f07fc4fc1..781e8e11c5 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -914,11 +914,6 @@ class TestRegexp < Test::Unit::TestCase
def test_raw_hyphen_and_tk_char_type_after_range
bug6853 = '[ruby-core:47115]'
- begin
- verbose, $VERBOSE = $VERBOSE, nil
- check(/[0-1-\s]/, [' ', '-'], [], bug6853)
- ensure
- $VERBOSE = verbose
- end
+ check(/[0-1-\s]/, [' ', '-'], ['2', 'a'], bug6853)
end
end