Skip to content

Commit 261aaf3

Browse files
Add ids to Det_SLogDet test
1 parent 594f46b commit 261aaf3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/link/numba/test_nlinalg.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212

1313

1414
@pytest.mark.parametrize("dtype", ("float64", "int64"))
15-
@pytest.mark.parametrize("op", (nlinalg.Det(), nlinalg.SLogDet()))
15+
@pytest.mark.parametrize(
16+
"op", (nlinalg.Det(), nlinalg.SLogDet()), ids=["det", "slogdet"]
17+
)
1618
def test_Det_SLogDet(op, dtype):
1719
x = pt.matrix(dtype=dtype)
1820

0 commit comments

Comments
 (0)