From b2eef4654bf70aa41f171c4d74b33bd41c214cf4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 17 Oct 2014 11:17:53 +0200 Subject: [PATCH] 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 --- selftest/subunithelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py index 6f1fdce..dcea5a8 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 -- 1.9.1