Skip to content

Commit 3c63c1d

Browse files
committed
following CapWords convention Signed-off-by: FinnBehrendt <[email protected]>
1 parent dbb856a commit 3c63c1d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/inferers/test_patch_inferer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ def test_patch_inferer_errors(self, inputs, arguments, expected_error):
478478
]
479479

480480

481-
class PatchInfererTests_cond(unittest.TestCase):
481+
class PatchInfererTestsCond(unittest.TestCase):
482482
@parameterized.expand(
483483
[
484484
TEST_CASE_0_TENSOR_c,

tests/inferers/test_slice_inferer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_shape(self, spatial_dim):
5353
result = inferer(input_volume, model)
5454

5555

56-
class TestSliceInferer_cond(unittest.TestCase):
56+
class TestSliceInfererCond(unittest.TestCase):
5757

5858
@parameterized.expand(TEST_CASES)
5959
def test_shape(self, spatial_dim):

tests/inferers/test_sliding_window_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def compute_dict(data):
373373
np.testing.assert_allclose(result_dict[rr].cpu().numpy(), expected_dict[rr], rtol=1e-4)
374374

375375

376-
class TestSlidingWindowInference_cond(unittest.TestCase):
376+
class TestSlidingWindowInferenceCond(unittest.TestCase):
377377
@parameterized.expand(TEST_CASES)
378378
def test_sliding_window_default(self, image_shape, roi_shape, sw_batch_size, overlap, mode, device):
379379
n_total = np.prod(image_shape)

0 commit comments

Comments
 (0)