Skip to content

Commit b8ac26f

Browse files
sakchalsyurkevi
authored andcommittedApr 12, 2024·
updated matrix operation tests
1 parent 20ea893 commit b8ac26f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎tests/test_matrix_operations.py

-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from .utility_functions import check_type_supported
1010

1111

12-
# det tests
1312
@pytest.mark.parametrize(
1413
"shape",
1514
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],
@@ -68,7 +67,6 @@ def test_det_valid_dtype(dtype: Dtype) -> None:
6867
assert isinstance(determinant, complex)
6968

7069

71-
# inverse tests
7270
@pytest.mark.parametrize(
7371
"shape",
7472
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],
@@ -125,7 +123,6 @@ def test_inverse_valid_dtype(dtype: Dtype) -> None:
125123
wrapper.inverse(arr, wrapper.MatProp(0))
126124

127125

128-
# norm tests
129126
@pytest.mark.parametrize(
130127
"shape",
131128
[(1, 1), (10, 10), (100, 100), (1000, 1000), (10000, 10000)],

0 commit comments

Comments
 (0)
Please sign in to comment.