summaryrefslogtreecommitdiff
path: root/src/python/test/test_tangential_complex.py
diff options
context:
space:
mode:
authorMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-16 14:19:06 -0400
committerMathieuCarriere <mathieu.carriere3@gmail.com>2020-03-16 14:19:06 -0400
commitaa035c480ba8c1e229f7135257b6a6ae8ad57032 (patch)
tree806269efad3ab4c080344646c104b2699aa20136 /src/python/test/test_tangential_complex.py
parent580ca73cac77b4c856fe1f341e496201774a20fd (diff)
parentf40161072b8f74f68b0ff67b6ef2be7abebec950 (diff)
Merge branch 'master' of https://github.com/GUDHI/gudhi-devel into wasserstein_representations
Diffstat (limited to 'src/python/test/test_tangential_complex.py')
-rwxr-xr-xsrc/python/test/test_tangential_complex.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/python/test/test_tangential_complex.py b/src/python/test/test_tangential_complex.py
index e650e99c..8668a2e0 100755
--- a/src/python/test/test_tangential_complex.py
+++ b/src/python/test/test_tangential_complex.py
@@ -37,7 +37,7 @@ def test_tangential():
assert st.num_simplices() == 6
assert st.num_vertices() == 4
- assert st.get_filtration() == [
+ assert list(st.get_filtration()) == [
([0], 0.0),
([1], 0.0),
([2], 0.0),
@@ -45,6 +45,7 @@ def test_tangential():
([3], 0.0),
([1, 3], 0.0),
]
+
assert st.get_cofaces([0], 1) == [([0, 2], 0.0)]
assert point_list[0] == tc.get_point(0)