summaryrefslogtreecommitdiff
path: root/cython/test/test_tangential_complex.py
diff options
context:
space:
mode:
Diffstat (limited to 'cython/test/test_tangential_complex.py')
-rwxr-xr-xcython/test/test_tangential_complex.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cython/test/test_tangential_complex.py b/cython/test/test_tangential_complex.py
index 8aa4023c..5385a0d3 100755
--- a/cython/test/test_tangential_complex.py
+++ b/cython/test/test_tangential_complex.py
@@ -6,7 +6,7 @@ from gudhi import TangentialComplex, SimplexTree
Author(s): Vincent Rouvreau
- Copyright (C) 2016 INRIA
+ Copyright (C) 2016 Inria
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -23,13 +23,13 @@ from gudhi import TangentialComplex, SimplexTree
"""
__author__ = "Vincent Rouvreau"
-__copyright__ = "Copyright (C) 2016 INRIA"
+__copyright__ = "Copyright (C) 2016 Inria"
__license__ = "GPL v3"
def test_tangential():
point_list = [[0.0, 0.0], [1.0, 0.0], [0.0, 1.0], [1.0, 1.0]]
- tc = TangentialComplex(points=point_list)
+ tc = TangentialComplex(intrisic_dim = 1, points=point_list)
assert tc.__is_defined() == True
assert tc.num_vertices() == 4