From 3520ac1ca967a0648ef8234c403e58f2460678a3 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 5 Aug 2025 13:45:35 +0200 Subject: [PATCH] Update tests/test_utils_run_later.py --- tests/test_utils_run_later.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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