Skip to content

Commit dcfe663

Browse files
committed
Fix typo.
1 parent d854806 commit dcfe663

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/component/test_mxnet_estimator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_deploy(sagemaker_session, tf_version):
5454
print('job succeeded: {}'.format(estimator.latest_training_job.name))
5555

5656
estimator.deploy(initial_instance_count=1, instance_type=INSTANCE_TYPE_CPU)
57-
image = IMAGE_URI_FORMAT_STRING.format(REGION, GPU_IMAGE_NAME, tf_version, 'cpu', 'py2')
57+
image = IMAGE_URI_FORMAT_STRING.format(REGION, CPU_IMAGE_NAME, tf_version, 'cpu', 'py2')
5858
sagemaker_session.create_model.assert_called_with(
5959
estimator._current_job_name,
6060
ROLE,

tests/component/test_tf_estimator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_deploy(sagemaker_session, tf_version):
5454
print('job succeeded: {}'.format(estimator.latest_training_job.name))
5555

5656
estimator.deploy(initial_instance_count=1, instance_type=INSTANCE_TYPE_CPU)
57-
image = IMAGE_URI_FORMAT_STRING.format(REGION, GPU_IMAGE_NAME, tf_version, 'cpu', 'py2')
57+
image = IMAGE_URI_FORMAT_STRING.format(REGION, CPU_IMAGE_NAME, tf_version, 'cpu', 'py2')
5858
sagemaker_session.create_model.assert_called_with(
5959
estimator._current_job_name,
6060
ROLE,

0 commit comments

Comments
 (0)