Skip to content

Commit d4cb72b

Browse files
committed
bug in prev commit in test_functions #774
1 parent 7116b1d commit d4cb72b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cf/test/test_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def test_normalize_slice(self):
396396
)
397397
self.assertEqual(
398398
cf.normalize_slice(slice(0, 7, -1), 8, cyclic=True),
399-
slice(0, 7, -1)
399+
slice(0, -1, -1)
400400
)
401401
self.assertEqual(
402402
cf.normalize_slice(slice(-1, -8, 1), 8, cyclic=True),

0 commit comments

Comments
 (0)