We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b2c6d6 commit 3fd7355Copy full SHA for 3fd7355
tests/unit/test_tf_estimator.py
@@ -1020,7 +1020,7 @@ def test_py2_version_deprecated(sagemaker_session):
1020
with pytest.raises(AttributeError) as e:
1021
TensorFlow(
1022
entry_point=SCRIPT_PATH,
1023
- framework_version="2.0.1",
+ framework_version="2.1.1",
1024
role=ROLE,
1025
sagemaker_session=sagemaker_session,
1026
train_instance_count=INSTANCE_COUNT,
@@ -1029,7 +1029,7 @@ def test_py2_version_deprecated(sagemaker_session):
1029
)
1030
1031
msg = (
1032
- "Python 2 containers are only available with 2.0.0 and lower versions. "
+ "Python 2 containers are only available with 2.1.0 and lower versions. "
1033
"Please use a Python 3 container."
1034
1035
assert msg in str(e.value)
0 commit comments