Fix another instance of an .npy file.

This commit is contained in:
Stefan van der Walt
2011-10-11 19:21:06 -07:00
parent 1aa7af64a9
commit 8a06fb79cf
+1 -1
View File
@@ -24,7 +24,7 @@ opencv_skip = dec.skipif(not loaded, 'OpenCV libraries not found')
class OpenCVTest(object):
lena_RGB_U8 = np.load(os.path.join(data_dir, 'lena_RGB_U8.npz'))['arr_0']
lena_GRAY_U8 = np.load(os.path.join(data_dir, 'lena_GRAY_U8.npy'))['arr_0']
lena_GRAY_U8 = np.load(os.path.join(data_dir, 'lena_GRAY_U8.npz'))['arr_0']
class TestSobel(OpenCVTest):