summaryrefslogtreecommitdiff
path: root/src/cython/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/test')
-rwxr-xr-xsrc/cython/test/test_alpha_complex.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cython/test/test_alpha_complex.py b/src/cython/test/test_alpha_complex.py
index 3731ccda..b08ac0d7 100755
--- a/src/cython/test/test_alpha_complex.py
+++ b/src/cython/test/test_alpha_complex.py
@@ -36,8 +36,7 @@ def test_infinite_alpha():
alpha_complex = AlphaComplex(points=point_list)
assert alpha_complex.__is_defined() == True
- simplex_tree = SimplexTree()
- alpha_complex.create_simplex_tree(simplex_tree)
+ simplex_tree = alpha_complex.create_simplex_tree()
assert simplex_tree.__is_persistence_defined() == False
assert simplex_tree.num_simplices() == 11
@@ -65,8 +64,7 @@ def test_filtered_alpha():
point_list = [[0, 0], [1, 0], [0, 1], [1, 1]]
filtered_alpha = AlphaComplex(points=point_list)
- simplex_tree = SimplexTree()
- filtered_alpha.create_simplex_tree(simplex_tree, max_alpha_square=0.25)
+ simplex_tree = filtered_alpha.create_simplex_tree(max_alpha_square=0.25)
assert simplex_tree.num_simplices() == 8
assert simplex_tree.num_vertices() == 4