Skip to content

Commit f40d3ed

Browse files
fix logic :)
1 parent b2f4245 commit f40d3ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numba_cuda/numba/cuda/tests/cudadrv/test_nvjitlink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from numba import config
1010

1111

12-
@unittest.skipIf(config.ENABLE_PYNVJITLINK, "pynvjitlink not enabled")
12+
@unittest.skipIf(not config.ENABLE_PYNVJITLINK, "pynvjitlink not enabled")
1313
@skip_on_cudasim("Linking unsupported in the simulator")
1414
class TestLinker(CUDATestCase):
1515
_NUMBA_NVIDIA_BINDING_0_ENV = {"NUMBA_CUDA_USE_NVIDIA_BINDING": "0"}

0 commit comments

Comments
 (0)