From 57016f4db0bb4b11985c8f9b90c60e15a5b513a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 1 Dec 2013 11:15:39 +0100 Subject: [PATCH] Recover hidden test cases caused by duplicate function names --- skimage/feature/tests/test_corner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/feature/tests/test_corner.py b/skimage/feature/tests/test_corner.py index 200c9e2a..bdfbb808 100644 --- a/skimage/feature/tests/test_corner.py +++ b/skimage/feature/tests/test_corner.py @@ -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)