From 9c164ea19f6d88d4144dfa96017e4d081ed9f426 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Mon, 23 Jun 2025 18:34:56 +0200 Subject: [PATCH] test(live_processing): change test mode to something more unlikely to be implemented --- tests/tests_devices/test_std_daq_live_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_devices/test_std_daq_live_processing.py b/tests/tests_devices/test_std_daq_live_processing.py index 991066e..349c301 100644 --- a/tests/tests_devices/test_std_daq_live_processing.py +++ b/tests/tests_devices/test_std_daq_live_processing.py @@ -53,7 +53,7 @@ def test_std_daq_live_processing_set_mode(std_daq_live_processing): std_daq_live_processing.set_mode("sum") assert std_daq_live_processing.get_mode() == "sum" with pytest.raises(TypeCheckError): - std_daq_live_processing.set_mode("average") + std_daq_live_processing.set_mode("mode_that_does_not_exist") with pytest.raises(TypeCheckError): std_daq_live_processing.set_mode(123)