remove unnecessary operator method call; ref #1927

This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-24 09:17:09 +09:00
parent e2da53c60d
commit 4592862b0d
+1 -1
View File
@@ -218,7 +218,7 @@ def report()
puts msg
end
$total_test = $ok_test.+($ko_test).+($kill_test)
$total_test = $ok_test+$ko_test+$kill_test
t_print("Total: #{$total_test}\n")
t_print(" OK: #{$ok_test}\n")