remove unnecessary operator method call; ref #1927

parent e2da53c6
...@@ -218,7 +218,7 @@ def report() ...@@ -218,7 +218,7 @@ def report()
puts msg puts msg
end 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("Total: #{$total_test}\n")
t_print(" OK: #{$ok_test}\n") t_print(" OK: #{$ok_test}\n")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment