Skip to content

Commit

Permalink
fixed typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
csachs committed May 18, 2017
1 parent 4d9fa9d commit 2a13c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion molyso/generic/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def each_image_slice(image, steps, direction='vertical'):
[ 1., 1.],
[ 1., 1.],
[ 1., 1.]]))]
>>> list(each_image_slice(numpy.ones((4, 4,)), 2, direction='horizontal'))
>>> list(each_image_slice(np.ones((4, 4,)), 2, direction='horizontal'))
[(0, 2, array([[ 1., 1., 1., 1.],
[ 1., 1., 1., 1.]])), (1, 2, array([[ 1., 1., 1., 1.],
[ 1., 1., 1., 1.]]))]
Expand Down

0 comments on commit 2a13c2f

Please sign in to comment.