diff --git a/tests/networks/nets/test_autoencoderkl.py b/tests/networks/nets/test_autoencoderkl.py index af0c55d6ec..33972c7ece 100644 --- a/tests/networks/nets/test_autoencoderkl.py +++ b/tests/networks/nets/test_autoencoderkl.py @@ -99,21 +99,6 @@ (1, 1, 16, 16), (1, 4, 4, 4), ], - [ - { - "spatial_dims": 2, - "in_channels": 1, - "out_channels": 1, - "channels": (4, 4, 4), - "latent_channels": 4, - "attention_levels": (False, False, False), - "num_res_blocks": 1, - "norm_num_groups": 4, - }, - (1, 1, 16, 16), - (1, 1, 16, 16), - (1, 4, 4, 4), - ], [ { "spatial_dims": 2, diff --git a/tests/networks/nets/test_spade_autoencoderkl.py b/tests/networks/nets/test_spade_autoencoderkl.py index 9353ceedc2..c9a17be55f 100644 --- a/tests/networks/nets/test_spade_autoencoderkl.py +++ b/tests/networks/nets/test_spade_autoencoderkl.py @@ -99,23 +99,6 @@ (1, 1, 16, 16), (1, 4, 4, 4), ], - [ - { - "spatial_dims": 2, - "label_nc": 3, - "in_channels": 1, - "out_channels": 1, - "channels": (4, 4, 4), - "latent_channels": 4, - "attention_levels": (False, False, False), - "num_res_blocks": 1, - "norm_num_groups": 4, - }, - (1, 1, 16, 16), - (1, 3, 16, 16), - (1, 1, 16, 16), - (1, 4, 4, 4), - ], [ { "spatial_dims": 2, diff --git a/tests/transforms/test_border_pad.py b/tests/transforms/test_border_pad.py index d0ea112d3a..adb01629f5 100644 --- a/tests/transforms/test_border_pad.py +++ b/tests/transforms/test_border_pad.py @@ -23,7 +23,6 @@ [{"spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)], [{"spatial_border": [1, 2, 3]}, (3, 8, 8, 4), (3, 10, 12, 10)], [{"spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)], - [{"spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)], ] diff --git a/tests/transforms/test_border_padd.py b/tests/transforms/test_border_padd.py index c7eb3da762..0b3ef058ab 100644 --- a/tests/transforms/test_border_padd.py +++ b/tests/transforms/test_border_padd.py @@ -23,8 +23,6 @@ [{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)], [{"keys": "img", "spatial_border": [1, 2, 3]}, (3, 8, 8, 4), (3, 10, 12, 10)], [{"keys": "img", "spatial_border": [1, 2, 3, 4, 5, 6]}, (3, 8, 8, 4), (3, 11, 15, 15)], - [{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)], - [{"keys": "img", "spatial_border": 2}, (3, 8, 8, 4), (3, 12, 12, 8)], ] diff --git a/tests/transforms/test_center_spatial_crop.py b/tests/transforms/test_center_spatial_crop.py index c0da043ecb..9120f30163 100644 --- a/tests/transforms/test_center_spatial_crop.py +++ b/tests/transforms/test_center_spatial_crop.py @@ -22,7 +22,6 @@ TEST_SHAPES = [ [{"roi_size": [2, 2, -1]}, (3, 3, 3, 3), (3, 2, 2, 3), True], [{"roi_size": [2, 2, 2]}, (3, 3, 3, 3), (3, 2, 2, 2), True], - [{"roi_size": [2, 2, 2]}, (3, 3, 3, 3), (3, 2, 2, 2), True], [{"roi_size": [2, 1, 2]}, (3, 3, 3, 3), (3, 2, 1, 2), False], [{"roi_size": [2, 1, 3]}, (3, 3, 1, 3), (3, 2, 1, 3), True], ] diff --git a/tests/transforms/test_spatial_padd.py b/tests/transforms/test_spatial_padd.py index 10bf958738..1b05f2e3af 100644 --- a/tests/transforms/test_spatial_padd.py +++ b/tests/transforms/test_spatial_padd.py @@ -21,7 +21,6 @@ TESTS = [ [{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "symmetric"}, (3, 8, 8, 5), (3, 15, 8, 8)], [{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "end"}, (3, 8, 8, 5), (3, 15, 8, 8)], - [{"keys": ["img"], "spatial_size": [15, 8, 8], "method": "end"}, (3, 8, 8, 5), (3, 15, 8, 8)], [{"keys": ["img"], "spatial_size": [15, 8, -1], "method": "end"}, (3, 8, 5, 4), (3, 15, 8, 4)], ]