From 18da19e7b904d9de60e6b49ad4a47c54a0f1520f Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Mon, 7 Mar 2016 00:39:39 -0800 Subject: [PATCH] Remove left-over mentions in test docstrings of lena --- skimage/feature/tests/test_match.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/skimage/feature/tests/test_match.py b/skimage/feature/tests/test_match.py index 770dc37b..c3e151ef 100644 --- a/skimage/feature/tests/test_match.py +++ b/skimage/feature/tests/test_match.py @@ -25,9 +25,9 @@ def test_binary_descriptors(): assert_equal(matches, [[0, 0], [1, 1]]) -def test_binary_descriptors_lena_rotation_crosscheck_false(): +def test_binary_descriptors_rotation_crosscheck_false(): """Verify matched keypoints and their corresponding masks results between - lena image and its rotated version with the expected keypoint pairs with + image and its rotated version with the expected keypoint pairs with cross_check disabled.""" img = data.astronaut() img = rgb2gray(img) @@ -60,9 +60,9 @@ def test_binary_descriptors_lena_rotation_crosscheck_false(): assert_equal(matches[:, 1], exp_matches2) -def test_binary_descriptors_lena_rotation_crosscheck_true(): +def test_binary_descriptors_rotation_crosscheck_true(): """Verify matched keypoints and their corresponding masks results between - lena image and its rotated version with the expected keypoint pairs with + image and its rotated version with the expected keypoint pairs with cross_check enabled.""" img = data.astronaut() img = rgb2gray(img)