From 4391c17842a949e14d4b9879143e1f589e503b48 Mon Sep 17 00:00:00 2001 From: Jim Kitchen Date: Wed, 22 Oct 2025 09:44:09 -0500 Subject: [PATCH] Remove empty pytest raises match condition --- graphblas/tests/test_matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphblas/tests/test_matrix.py b/graphblas/tests/test_matrix.py index 24f0e73d7..b972ef260 100644 --- a/graphblas/tests/test_matrix.py +++ b/graphblas/tests/test_matrix.py @@ -2794,7 +2794,7 @@ def test_ss_concat(A, v): expected[:, A.ncols] = v assert B5.isequal(expected) - with pytest.raises(TypeError, match=""): + with pytest.raises(TypeError): gb.ss.concat([v, [v]]) with pytest.raises(TypeError): gb.ss.concat([[v], v])