From f005cfe5170a7838fc35ce620a65959e29d3c004 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 5 Aug 2025 13:51:43 +0200 Subject: [PATCH] Update tests/test_utils_run_later.py --- tests/test_utils_run_later.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_utils_run_later.py b/tests/test_utils_run_later.py index 656b6ad7d..07fef0a94 100644 --- a/tests/test_utils_run_later.py +++ b/tests/test_utils_run_later.py @@ -123,10 +123,11 @@ def test_run_at_tqdm_multiple_updates(monkeypatch, capsys): captured = capsys.readouterr() + assert "0%| |" in captured.err assert "50%|█████ |" in captured.err assert "100%|██████████|" in captured.err - assert "Function done!" in captured.err + assert "Function done!" in captured # Test today/yesterday and tomorrow functions