Skip to content

Commit e8a3d1a

Browse files
committed
Fix test_trace_with_parametrize_handles_shared_fixtureinfo for colors
1 parent 4e45472 commit e8a3d1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_pdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ def test_func_kw(myparam, request, func="func_kw"):
10861086
child.sendline("c")
10871087
child.expect_exact("> PDB continue (IO-capturing resumed) >")
10881088
rest = child.read().decode("utf8")
1089-
assert "6 passed in" in rest
1089+
assert "= \x1b[32m\x1b[1m6 passed\x1b[0m\x1b[32m in" in rest
10901090
assert "reading from stdin while output" not in rest
10911091
# Only printed once - not on stderr.
10921092
assert "Exit: Quitting debugger" not in child.before.decode("utf8")

0 commit comments

Comments
 (0)