Skip to content

Commit 98e1283

Browse files
committed
fix ruff format
1 parent 387f756 commit 98e1283

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

numba_cuda/numba/cuda/tests/cudapy/test_debuginfo.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,9 @@ def f(x):
404404
match = re.compile(pat).search(llvm_ir)
405405
self.assertIsNone(match, msg=llvm_ir)
406406

407-
@unittest.skipIf(config.CUDA_DEBUG_POLY,
408-
"Uses old union format, not variant_part")
407+
@unittest.skipIf(
408+
config.CUDA_DEBUG_POLY, "Uses old union format, not variant_part"
409+
)
409410
def test_union_poly_types(self):
410411
sig = (types.int32, types.int32)
411412

@@ -463,8 +464,7 @@ def a_union_use_case(arg, results):
463464
expected = "[1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]"
464465
self.assertIn(expected, out.getvalue())
465466

466-
@unittest.skipUnless(config.CUDA_DEBUG_POLY,
467-
"CUDA_DEBUG_POLY not enabled")
467+
@unittest.skipUnless(config.CUDA_DEBUG_POLY, "CUDA_DEBUG_POLY not enabled")
468468
def test_poly_variant_part(self):
469469
"""Test polymorphic variables with DW_TAG_variant_part.
470470

0 commit comments

Comments
 (0)