From d4cb72b6af6960249d43e6adfcae0f0608b0052c Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 7 Jun 2024 18:32:13 +0100 Subject: [PATCH] bug in prev commit in test_functions #774 --- cf/test/test_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cf/test/test_functions.py b/cf/test/test_functions.py index 79fe13a3de..370d0a9036 100644 --- a/cf/test/test_functions.py +++ b/cf/test/test_functions.py @@ -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),