Skip to content

Commit

Permalink
bug in prev commit in test_functions #774
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjbr123 committed Jun 7, 2024
1 parent 7116b1d commit d4cb72b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cf/test/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def test_normalize_slice(self):
)
self.assertEqual(
cf.normalize_slice(slice(0, 7, -1), 8, cyclic=True),
slice(0, 7, -1)
slice(0, -1, -1)
)
self.assertEqual(
cf.normalize_slice(slice(-1, -8, 1), 8, cyclic=True),
Expand Down

0 comments on commit d4cb72b

Please sign in to comment.