Skip to content

Commit a17ebd1

Browse files
committed
Fix regexp in test_times_multiline to accomodate slow CI runners
1 parent 6203797 commit a17ebd1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

testing/test_terminal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2250,8 +2250,8 @@ def test_times_multiline(
22502250
output.stdout.re_match_lines(
22512251
[
22522252
r"test_bar.py ...................",
2253-
r"........... \s+ \d{1,3}[\.[a-z\ ]{1,2}\d{0,3}\w{1,2}$",
2254-
r"test_foo.py \.{5} \s+ \d{1,3}[\.[a-z\ ]{1,2}\d{0,3}\w{1,2}$",
2253+
r"........... \s+ \d{1,4}[\.[a-z\ ]{1,2}\d{0,3}\w{1,2}$",
2254+
r"test_foo.py \.{5} \s+ \d{1,4}[\.[a-z\ ]{1,2}\d{0,3}\w{1,2}$",
22552255
],
22562256
consecutive=True,
22572257
)

0 commit comments

Comments
 (0)