From 58d13a6e3ed2cafafec415d2d980c16770bcc9cc Mon Sep 17 00:00:00 2001 From: b1tg <33436708+b1tg@users.noreply.github.com> Date: Wed, 10 Sep 2025 03:15:39 +0800 Subject: [PATCH] remove redundant check (#12087) --- test/test_dtype.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/test_dtype.py b/test/test_dtype.py index 01144fe898..164d55b5b7 100644 --- a/test/test_dtype.py +++ b/test/test_dtype.py @@ -344,7 +344,6 @@ class TestUint64DType(TestDType): class TestBoolDType(TestDType): DTYPE = dtypes.bool -@unittest.skipUnless(is_dtype_supported(dtypes.bfloat16), f"no bfloat16 on {Device.DEFAULT}") class TestBFloat16Type(TestDType): DTYPE = dtypes.bfloat16 class TestPtrDType(unittest.TestCase):