Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/truffle/pe/pe.rb
Original file line number Diff line number Diff line change
@@ -67,8 +67,8 @@ def tagged_example(code)
timedout = 0

def report(status, code, message = nil)
format_str = '%7s: %s'
puts message ? format(format_str + "\n %s", status, code, message) : format('%7s: %s', status, code)
format_str = '%14s: %s'
puts message ? format(format_str + "\n %s", status, code, message) : format('%14s: %s', status, code)
end

EXAMPLES.each do |code, expected_constant, tagged|
@@ -105,7 +105,7 @@ def report(status, code, message = nil)
report 'QUERY', code, "wasn't supposed to be constant but it was"
failed += 1
else
report 'OK', code
report 'OK (counter)', code
end
end
end

0 comments on commit 2b4ea9a

Please sign in to comment.