Skip to content

Commit

Permalink
fix logic :)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed Oct 8, 2024
1 parent b2f4245 commit f40d3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numba_cuda/numba/cuda/tests/cudadrv/test_nvjitlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from numba import config


@unittest.skipIf(config.ENABLE_PYNVJITLINK, "pynvjitlink not enabled")
@unittest.skipIf(not config.ENABLE_PYNVJITLINK, "pynvjitlink not enabled")
@skip_on_cudasim("Linking unsupported in the simulator")
class TestLinker(CUDATestCase):
_NUMBA_NVIDIA_BINDING_0_ENV = {"NUMBA_CUDA_USE_NVIDIA_BINDING": "0"}
Expand Down

0 comments on commit f40d3ed

Please sign in to comment.