From bafbe86bbd9ad2ed143cdff33137c6c8a9033cf9 Mon Sep 17 00:00:00 2001 From: Matteo Bettini Date: Sat, 14 Dec 2024 18:40:24 -0800 Subject: [PATCH] parallel collection --- test/test_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_task.py b/test/test_task.py index fc1660f6..e6c65c0b 100644 --- a/test/test_task.py +++ b/test/test_task.py @@ -34,7 +34,7 @@ def test_loading_tasks(task_name): task_name_hydra = cfg.hydra.runtime.choices.task assert task_name_hydra == task_name - warn_message = "TaskConfig python dataclass not foud, task is being loaded without type checks" + warn_message = "TaskConfig python dataclass not found, task is being loaded without type checks" with ( pytest.warns(match=warn_message)