diff --git a/tests/test_utils_run_later.py b/tests/test_utils_run_later.py index 084b4d10..656b6ad7 100644 --- a/tests/test_utils_run_later.py +++ b/tests/test_utils_run_later.py @@ -123,10 +123,10 @@ def test_run_at_tqdm_multiple_updates(monkeypatch, capsys): captured = capsys.readouterr() - assert "50%|█████ |" in captured - assert "100%|██████████|" in captured + assert "50%|█████ |" in captured.err + assert "100%|██████████|" in captured.err - assert "Function done!" in captured + assert "Function done!" in captured.err # Test today/yesterday and tomorrow functions