summaryrefslogtreecommitdiff
path: root/selftest/subunithelper.py
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-10-17 11:17:53 +0200
committerMichael Adam <obnox@samba.org>2014-10-23 15:56:04 +0200
commit5340be1740fa753f9e1471b025c9f29ed2ba2234 (patch)
treef0979da829e785c6ff34cdb95f7257608f5db470 /selftest/subunithelper.py
parent88f9f50024b624319267ffa3684044d4e20e85c7 (diff)
downloadsamba-5340be1740fa753f9e1471b025c9f29ed2ba2234.tar.gz
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>
Diffstat (limited to 'selftest/subunithelper.py')
-rw-r--r--selftest/subunithelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py
index 6f1fdcee127..dcea5a84bbe 100644
--- a/selftest/subunithelper.py
+++ b/selftest/subunithelper.py
@@ -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