1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

subunit: report [X/Y at Zs] instead of [X/Y in Zs]

when running test X out of Y after Z secons have passed

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Matthieu Patou <mat@matws.net>
This commit is contained in:
Michael Adam 2014-10-17 11:17:53 +02:00
parent 88f9f50024
commit 5340be1740

View File

@ -489,7 +489,7 @@ class PlainFormatter(TestsuiteEnabledTestResult):
if self.totalsuites is not None:
out += "/%d" % self.totalsuites
if self.start_time is not None:
out += " in " + self._format_time(self.last_time - self.start_time)
out += " at " + self._format_time(self.last_time - self.start_time)
if self.suitesfailed:
out += ", %d errors" % (len(self.suitesfailed),)
out += "] %s" % name