From 637f9a74c39ba79dbdfd7c74fe7c7bdc2f10d9c5 Mon Sep 17 00:00:00 2001 From: jessegrabowski Date: Tue, 28 Oct 2025 20:52:09 -0500 Subject: [PATCH] Remove xfail from uint64 case --- tests/tensor/test_math.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/tensor/test_math.py b/tests/tensor/test_math.py index fc7f5cdd17..167b2cd0ae 100644 --- a/tests/tensor/test_math.py +++ b/tests/tensor/test_math.py @@ -1409,12 +1409,7 @@ def _grad_list(self): "uint8", "uint16", "uint32", - pytest.param( - "uint64", - marks=pytest.mark.xfail( - condition=config.mode != "FAST_COMPILE", reason="Fails due to #770" - ), - ), + "uint64", ), ) def test_uint(self, dtype):