Skip to content

Commit cab3c7b

Browse files
committed
fix CI
1 parent 8b1fb02 commit cab3c7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cuda_core/tests/test_program.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ def test_cpp_program_with_extra_sources():
697697
# negative test with NVRTC with multiple sources
698698
code = 'extern "C" __global__ void my_kernel(){}'
699699
helper = 'extern "C" __global__ void helper(){}'
700-
options = ProgramOptions(extra_sources=helper)
700+
options = ProgramOptions(extra_sources=[("helper", helper)])
701701
with pytest.raises(ValueError, match="extra_sources is not supported by the NVRTC backend"):
702702
Program(code, "c++", options)
703703

0 commit comments

Comments
 (0)