Skip to content

Commit baa3b98

Browse files
committed
Fix unit tests
1 parent e65c833 commit baa3b98

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/unit/test_chainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _create_train_job(version):
122122
'MaxRuntimeInSeconds': 24 * 60 * 60
123123
},
124124
'tags': None,
125-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
125+
'vpc_config': None
126126
}
127127

128128

tests/unit/test_estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ def test_unsupported_type_in_dict():
658658
},
659659
'stop_condition': {'MaxRuntimeInSeconds': 86400},
660660
'tags': None,
661-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
661+
'vpc_config': None
662662
}
663663

664664
HYPERPARAMS = {'x': 1, 'y': 'hello'}

tests/unit/test_mxnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def _create_train_job(version):
9595
'MaxRuntimeInSeconds': 24 * 60 * 60
9696
},
9797
'tags': None,
98-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
98+
'vpc_config': None
9999
}
100100

101101

tests/unit/test_pytorch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _create_train_job(version):
113113
'MaxRuntimeInSeconds': 24 * 60 * 60
114114
},
115115
'tags': None,
116-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
116+
'vpc_config': None
117117
}
118118

119119

tests/unit/test_tf_estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def _create_train_job(tf_version):
103103
'MaxRuntimeInSeconds': 24 * 60 * 60
104104
},
105105
'tags': None,
106-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
106+
'vpc_config': None
107107
}
108108

109109

0 commit comments

Comments
 (0)