Skip to content

Commit 9636021

Browse files
committed
Fix space in tests
1 parent 7e75e56 commit 9636021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_timeit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def test_main_colorized(self):
414414
self.assertEqual(
415415
s,
416416
"1 loop, best of 5: "
417-
f"{t.best}5.5 sec {t.reset}"
417+
f"{t.best}5.5 sec{t.reset} "
418418
f"{t.per_loop}per loop{t.reset}\n",
419419
)
420420

@@ -427,7 +427,7 @@ def test_main_verbose_colorized(self):
427427
f"1 loop {t.arrow}-> {t.timing}1 secs{t.reset}\n\n"
428428
"raw times: "
429429
f"{t.timing}1 sec, 1 sec, 1 sec, 1 sec, 1 sec{t.reset}\n\n"
430-
f"1 loop, best of 5: {t.best}1 sec {t.reset}"
430+
f"1 loop, best of 5: {t.best}1 sec{t.reset} "
431431
f"{t.per_loop}per loop{t.reset}\n",
432432
)
433433

0 commit comments

Comments
 (0)