From ccaa66b206cd654051d37f25707795d0ca38d534 Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Fri, 13 Jun 2025 18:24:42 +0100 Subject: [PATCH] Convert to np.dtype in test --- tests/test_BioLogic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_BioLogic.py b/tests/test_BioLogic.py index 0d8d111..1fb3dc0 100644 --- a/tests/test_BioLogic.py +++ b/tests/test_BioLogic.py @@ -99,7 +99,7 @@ def test_colID_to_dtype(colIDs, expected): return expected_dtype = np.dtype(expected) dtype, flags_dict = BioLogic.VMPdata_dtype_from_colIDs(colIDs) - assert dtype == expected_dtype + assert np.dtype(dtype) == expected_dtype @pytest.mark.parametrize(