summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2022-11-16 09:56:08 +0100
committerMarc Glisse <marc.glisse@inria.fr>2022-11-16 09:56:08 +0100
commit1094d442e81e6267d001cc0ff575b8c5ec53515e (patch)
tree39e231336ae6bcbbe482477f07ebd14a62068dfb
parent1f532933658bf6788b1ead8ae1d902416872e70a (diff)
parent02b59e350fac3688b7dee24abe3c058739508aa5 (diff)
Merge remote-tracking branch 'refs/remotes/mine/insert' into insert
-rwxr-xr-xsrc/python/test/test_simplex_tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/test/test_simplex_tree.py b/src/python/test/test_simplex_tree.py
index 59fd889a..2ccbfbf5 100755
--- a/src/python/test/test_simplex_tree.py
+++ b/src/python/test/test_simplex_tree.py
@@ -528,7 +528,7 @@ def test_simplex_tree_constructor_exception():
def test_create_from_array():
a = np.array([[1, 4, 13, 6], [4, 3, 11, 5], [13, 11, 10, 12], [6, 5, 12, 2]])
- st = SimplexTree.create_from_array(a, max_filtration=5)
+ st = SimplexTree.create_from_array(a, max_filtration=5.0)
assert list(st.get_filtration()) == [([0], 1.0), ([3], 2.0), ([1], 3.0), ([0, 1], 4.0), ([1, 3], 5.0)]