diff options
| -rw-r--r-- | mrbgems/mruby-string-ext/test/string.rb | 1 | ||||
| -rw-r--r-- | test/t/string.rb | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/mrbgems/mruby-string-ext/test/string.rb b/mrbgems/mruby-string-ext/test/string.rb index ce4bc7352..e20a2d3f3 100644 --- a/mrbgems/mruby-string-ext/test/string.rb +++ b/mrbgems/mruby-string-ext/test/string.rb @@ -14,6 +14,7 @@ assert('String#getbyte') do end assert('String#dump') do + ("\1" * 100).dump # should not raise an exception - regress #1210 "foo".dump == "\"foo\"" end diff --git a/test/t/string.rb b/test/t/string.rb index 945ef890c..1e0d44f67 100644 --- a/test/t/string.rb +++ b/test/t/string.rb @@ -415,10 +415,6 @@ assert('String#each_byte') do bytes1 == bytes2 end -assert('String#dump') do - ("\1" * 100).dump # should not raise an exception - regress #1210 -end - assert('String#inspect') do ("\1" * 100).inspect # should not raise an exception - regress #1210 end |
