uwimap: fix build using gcc14 and recompile for library/security/openssl-3
[oi-userland.git] / components / python / coverage / patches / 05-shell-Terminated.patch
blob5c198fa92c3ff94fd78f2fd0ecbd044c4c5fa8cd
1 --- coverage-7.6.10/tests/test_concurrency.py.orig
2 +++ coverage-7.6.10/tests/test_concurrency.py
3 @@ -769,7 +769,7 @@
4 assert len(out_lines) in [2, 3]
5 assert out_lines[:2] == ["START", "SIGTERM"]
6 if len(out_lines) == 3:
7 - assert out_lines[2] == "Terminated"
8 + assert "Terminated" in out_lines[2]
9 out = self.run_command("coverage report -m")
10 expected = "handler.py 5 1 80% 6"
11 assert self.squeezed_lines(out)[2] == expected