Skip to content

Commit

Permalink
fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkho committed Oct 18, 2024
1 parent 9c22c7c commit 810f345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/nodes/test_exception_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def _test_exception_handling_multiprocess(self, pin_memory):
with self.assertRaisesRegex(ValueError, "test exception"):
print(list(node))

def test_exception_handling_mapper(self):
def test_exception_handling_mapper_multiprocess(self):
self._test_exception_handling_multiprocess(False)

@unittest.skipIf(not TEST_CUDA, "CUDA not found")
def test_exception_handling_mapper_cuda(self):
def test_exception_handling_mapper_multiprocess_cuda(self):
self._test_exception_handling_multiprocess(True)

0 comments on commit 810f345

Please sign in to comment.