Skip to content

Commit 149ac7a

Browse files
committed
Fix unit tests
1 parent d4ff02a commit 149ac7a

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
@@ -121,7 +121,7 @@ def _create_train_job(version):
121121
'MaxRuntimeInSeconds': 24 * 60 * 60
122122
},
123123
'tags': None,
124-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
124+
'vpc_config': None
125125
}
126126

127127

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
@@ -112,7 +112,7 @@ def _create_train_job(version):
112112
'MaxRuntimeInSeconds': 24 * 60 * 60
113113
},
114114
'tags': None,
115-
'vpc_config': {'SecurityGroupIds': None, 'Subnets': None}
115+
'vpc_config': None
116116
}
117117

118118

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)