From ead321b9c220187b0a7e2ba2492e81642ecd9d4a Mon Sep 17 00:00:00 2001 From: pauladkisson Date: Thu, 28 Sep 2023 17:43:53 -0700 Subject: [PATCH] added invalid test for parse_matlab_vector --- tests/test_scanimage_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_scanimage_utils.py b/tests/test_scanimage_utils.py index cbb2da09..fd55c671 100644 --- a/tests/test_scanimage_utils.py +++ b/tests/test_scanimage_utils.py @@ -49,7 +49,7 @@ def test_parse_matlab_vector(matlab_vector, expected_vector): def test_parse_matlab_vector_invalid(): with pytest.raises(ValueError): - parse_matlab_vector("Invalid vector") + parse_matlab_vector("Invalid") @pytest.mark.parametrize(