File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
numba_cuda/numba/cuda/tests/cudapy Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments