From 0240998b069bb466ef87bc5452bd9d0c854fd33f Mon Sep 17 00:00:00 2001 From: George Hotz Date: Thu, 2 Jul 2026 19:19:38 -0700 Subject: [PATCH] hotfix: that test_ellipsis_with_int test was important --- test/null/test_uop_graph.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/null/test_uop_graph.py b/test/null/test_uop_graph.py index ec804dd831..9f575a3e86 100644 --- a/test/null/test_uop_graph.py +++ b/test/null/test_uop_graph.py @@ -876,7 +876,6 @@ class TestUOpGetItem(unittest.TestCase): def test_ellipsis_all_slices(self): p = self._placeholder((64, 80)) self.assertEqual(p[..., :64].shape, (64, 64)) - @unittest.skip("what is this testing?") def test_ellipsis_with_int(self): p = self._placeholder((64, 80)) r = UOp.range(64, 100)