Commit 85c0e72b authored by Stefan Behnel's avatar Stefan Behnel

test output fix

parent 405c14c2
......@@ -33,7 +33,7 @@ class ErrorWriter(object):
(not is_warning and collect_errors):
result.append( (int(line), int(column), message.strip()) )
result.sort()
return [ "%d:%d:%s" % values for values in result ]
return [ "%d:%d: %s" % values for values in result ]
def geterrors(self):
return self._collect(True, False)
......
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