summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/assert.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/assert.rb b/test/assert.rb
index 6fad58fa8..ca3ebc887 100644
--- a/test/assert.rb
+++ b/test/assert.rb
@@ -10,11 +10,7 @@ def t_print(*args)
len = args.size
while i < len
str = args[i].to_s
- begin
- __printstr__ str
- rescue NoMethodError
- __t_printstr__ str rescue print str
- end
+ __t_printstr__ str
i += 1
end
end