From 9967729e9f17002b28e71e61dd3eaa71ca45c9dd Mon Sep 17 00:00:00 2001 From: Amanda Potts Date: Tue, 8 Oct 2024 14:07:18 -0400 Subject: [PATCH] Closes #3820: bug in flip multi-local --- tests/numpy/manipulation_functions_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/numpy/manipulation_functions_test.py b/tests/numpy/manipulation_functions_test.py index 83a534cc8d..301e07af20 100644 --- a/tests/numpy/manipulation_functions_test.py +++ b/tests/numpy/manipulation_functions_test.py @@ -40,6 +40,8 @@ def test_flip_multi_dim_bool(self, size): f2 = ak.broadcast(segments=segs, values=vals2, permutation=perm).reshape(shape) assert_equal(f, f2) + # Currently there is a bug in the reverse indexing of Strings (#3821) that causes this test to fail. + @pytest.mark.skip("Skip until bug fix Ticket #3821 is completed.") @pytest.mark.parametrize("size", pytest.prob_size) def test_flip_string(self, size): s = ak.random_strings_uniform(1, 2, size, seed=seed)