From dad3cc4961dabcddc5305839aaa93ea9e4740089 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 27 Aug 2016 14:38:41 +0200 Subject: [PATCH] remove test for removed option --- skimage/feature/tests/test_hog.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/skimage/feature/tests/test_hog.py b/skimage/feature/tests/test_hog.py index 0a31b910124..7607386cfcc 100644 --- a/skimage/feature/tests/test_hog.py +++ b/skimage/feature/tests/test_hog.py @@ -188,9 +188,5 @@ def test_hog_orientations_circle(): assert_almost_equal(actual, desired, decimal=1) -def test_hog_normalise_none_error_raised(): - img = np.array([1, 2, 3]) - assert_raises(ValueError, feature.hog, img, normalise=True) - if __name__ == '__main__': np.testing.run_module_suite()