Skip to content

Commit 2890779

Browse files
authored
ci: Fix L0_cuda_shared_memory (#7832)
1 parent a861e56 commit 2890779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qa/L0_cuda_shared_memory/cuda_shared_memory_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class CudaSharedMemoryTest(CudaSharedMemoryTestBase):
156156
def test_invalid_create_shm(self):
157157
# Raises error since tried to create invalid cuda shared memory region
158158
with self.assertRaisesRegex(
159-
cshm.SharedMemoryException, "unable to create cuda shared memory handle"
159+
cshm.CudaSharedMemoryException, "unable to create cuda shared memory handle"
160160
):
161161
self._shm_handles.append(
162162
cshm.create_shared_memory_region("dummy_data", -1, 0)

0 commit comments

Comments
 (0)