summaryrefslogtreecommitdiff
path: root/src/python/test/test_representations.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/test/test_representations.py')
-rwxr-xr-xsrc/python/test/test_representations.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/python/test/test_representations.py b/src/python/test/test_representations.py
index 43c914f3..86439655 100755
--- a/src/python/test/test_representations.py
+++ b/src/python/test/test_representations.py
@@ -63,12 +63,3 @@ def test_dummy_atol():
atol_vectoriser.transform(X=[a, b, c])
-from gudhi.representations.vector_methods import BettiCurve
-
-
-def test_infinity():
- a = np.array([[1.0, 8.0], [2.0, np.inf], [3.0, 4.0]])
- c = BettiCurve(20, [0.0, 10.0])(a)
- assert c[1] == 0
- assert c[7] == 3
- assert c[9] == 2