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

support multi-run for test/ruby/enc/test_regex_casefold.rb

should not mutate test data.
This commit is contained in:
Koichi Sasada 2020-01-29 13:07:56 +09:00
parent 98f6c74b42
commit 46173eeb64

View file

@ -11,7 +11,7 @@ class TestCaseFold < Test::Unit::TestCase
def check_downcase_properties(expected, start, *flags)
assert_equal expected, start.downcase(*flags)
temp = start
temp = start.dup
assert_equal expected, temp.downcase!(*flags)
assert_equal expected, expected.downcase(*flags)
temp = expected