summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/python/test/test_dtm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/test/test_dtm.py b/src/python/test/test_dtm.py
index 09876496..e46d616c 100755
--- a/src/python/test/test_dtm.py
+++ b/src/python/test/test_dtm.py
@@ -94,7 +94,7 @@ def test_dtm_overflow_warnings():
with warnings.catch_warnings(record=True) as w:
# TODO Test "keops" implementation as well when next version of pykeops (current is 1.5) is released (should fix the problem (cf. issue #543))
- dtm = DistanceToMeasure(2, q=10000, implementation="hnsw")
+ dtm = DistanceToMeasure(2, implementation="hnsw")
r = dtm.fit_transform(pts)
assert len(w) == 1
assert issubclass(w[0].category, RuntimeWarning)