diff --git a/cuda_bindings/tests/legacy_api/test_legacy_kernelParams.py b/cuda_bindings/tests/legacy_api/test_legacy_kernelParams.py index 555d6a7284c..60189cb08d2 100644 --- a/cuda_bindings/tests/legacy_api/test_legacy_kernelParams.py +++ b/cuda_bindings/tests/legacy_api/test_legacy_kernelParams.py @@ -601,7 +601,7 @@ class testStruct(ctypes.Structure): ASSERT_DRV(err) -@pytest.mark.parametrize("pass_by_address", [False, True], ids=["by-address", "not-by-address"]) +@pytest.mark.parametrize("pass_by_address", [False, True], ids=["not-by-address", "by-address"]) def test_kernelParams_buffer_protocol(pass_by_address, device): err, uvaSupported = cuda.cuDeviceGetAttribute( cuda.CUdevice_attribute.CU_DEVICE_ATTRIBUTE_UNIFIED_ADDRESSING, device diff --git a/cuda_bindings/tests/test_kernelParams.py b/cuda_bindings/tests/test_kernelParams.py index 3457965086e..9f0ca4b7d66 100644 --- a/cuda_bindings/tests/test_kernelParams.py +++ b/cuda_bindings/tests/test_kernelParams.py @@ -583,7 +583,7 @@ class testStruct(ctypes.Structure): ASSERT_DRV(err) -@pytest.mark.parametrize("pass_by_address", [False, True], ids=["by-address", "not-by-address"]) +@pytest.mark.parametrize("pass_by_address", [False, True], ids=["not-by-address", "by-address"]) def test_kernelParams_buffer_protocol(pass_by_address, device): err, uvaSupported = cuda.cuDeviceGetAttribute( cuda.CUdevice_attribute.CU_DEVICE_ATTRIBUTE_UNIFIED_ADDRESSING, device