Skip to content

Commit 9bccfa5

Browse files
committed
Remove unused none standin in the linalg tests
1 parent d86a0a1 commit 9bccfa5

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

array_api_tests/test_linalg.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515

1616
import pytest
1717
from hypothesis import assume, given
18-
from hypothesis.strategies import (booleans, composite, none, tuples, floats,
18+
from hypothesis.strategies import (booleans, composite, tuples, floats,
1919
integers, shared, sampled_from, one_of,
2020
data, just)
2121
from ndindex import iter_indices
2222

2323
import itertools
2424

25-
from .array_helpers import assert_exactly_equal, asarray, assert_allclose
25+
from .array_helpers import assert_exactly_equal, asarray
2626
from .hypothesis_helpers import (xps, dtypes, shapes, kwargs, matrix_shapes,
2727
square_matrix_shapes, symmetric_matrices,
2828
positive_definite_matrices, MAX_ARRAY_SIZE,
@@ -41,9 +41,6 @@
4141

4242
pytestmark = pytest.mark.ci
4343

44-
# Standin strategy for not yet implemented tests
45-
todo = none()
46-
4744
def assert_equal(x, y):
4845
if x.dtype in dh.float_dtypes:
4946
# It's too difficult to do an approximately equal test here because

0 commit comments

Comments
 (0)