Update tests/test_utils_run_later.py
Run CI Tests / test (push) Successful in 2m27s

This commit is contained in:
2025-08-29 11:47:49 +02:00
parent 27ac6eb48b
commit 272a230750
+6 -1
View File
@@ -125,7 +125,12 @@ def test_run_at_tqdm_multiple_updates(monkeypatch, capsys):
captured = capsys.readouterr()
assert "0%| |" in captured.err
assert "50%|█████ |" in captured.err
assert (
"50%|█████ |" in captured.err
or "51%|█████ |" in captured.err
), f"Progress bar mismatch: {captured.err}"
assert "100%|██████████|" in captured.err
assert "Function done!" in captured.out