From cf941b1d115af87c1c3fdc8d50ab95bcba258b3c Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Fri, 6 Feb 2026 13:50:47 +0000 Subject: [PATCH] Fix unit tests for scan workflows --- tests/unit_tests/test_scan_workflows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_scan_workflows.py b/tests/unit_tests/test_scan_workflows.py index 6fb2ff70..6406d5ab 100644 --- a/tests/unit_tests/test_scan_workflows.py +++ b/tests/unit_tests/test_scan_workflows.py @@ -323,7 +323,7 @@ def test_histo_acquisition_on_sample(histo_workflow, mocker, caplog): # Should never warn assert len(caplog.records) == 1 - expected_message = "Stack failed at (1, 2, 3) treating as background." + expected_message = "Stack failed at (1, 2, 3). Treating as background." assert caplog.records[0].message == expected_message assert caplog.records[0].levelname == "INFO"