Skip to content

Commit 6ded320

Browse files
committed
Fix formatting bug with output of percentage complete
1 parent a939b12 commit 6ded320

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,7 @@ class Console(OutputHandler):
18131813
OutputHandler.__init__(self, options, reopen_std_file(sys.__stdout__))
18141814

18151815
def testStart(self, test):
1816-
msg = f"[{test.mgr.percentage():>3}%] {test.displayName()} ..."
1816+
msg = f"[{test.mgr.percentage():>3.0f}%] {test.displayName()} ..."
18171817
self.output(test, msg, nl=False)
18181818

18191819
def testProgress(self, test, msg):

0 commit comments

Comments
 (0)