Recover hidden test cases caused by duplicate function names

This commit is contained in:
Johannes Schönberger
2013-12-01 11:15:39 +01:00
parent ed33dbad6e
commit 57016f4db0
+2 -2
View File
@@ -36,7 +36,7 @@ def test_structure_tensor():
[ 0, 0, 0, 0, 0]]))
def test_structure_tensor():
def test_hessian_matrix():
square = np.zeros((5, 5))
square[2, 2] = 1
Hxx, Hxy, Hyy = hessian_matrix(square, sigma=0.1)
@@ -74,7 +74,7 @@ def test_structure_tensor_eigvals():
[0, 0, 0, 0, 0]]))
def test_structure_tensor_eigvals():
def test_hessian_matrix_eigvals():
square = np.zeros((5, 5))
square[2, 2] = 1
Hxx, Hxy, Hyy = hessian_matrix(square, sigma=0.1)