__t_printstr__ may not be available for tests

This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-12-31 00:55:07 +09:00
parent 3531fe179c
commit 1d7d7062fc
+1 -1
View File
@@ -10,7 +10,7 @@ def t_print(*args)
len = args.size
while i < len
str = args[i].to_s
__t_printstr__ str
__t_printstr__ str rescue print str
i += 1
end
end