Fix integer overflow error in mrdb test

This commit is contained in:
KOBAYASHI Shuji
2020-11-18 16:58:59 +09:00
parent 3d8350f920
commit f50cde9924
+1 -4
View File
@@ -63,10 +63,7 @@ assert('mruby-bin-debugger(mrdb) command line') do
# ruby source
src = "foo = 'foo'\n"
str = ""
103.times {
str += "1234567890"
}
str = ":#{'abcdefghij' * 103}"
cmd = "p a=#{str}"
# test case