Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 7bdfd11

Browse files
committed
Fix test fixture usage
1 parent b35ce3f commit 7bdfd11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/sagemaker/test_tfs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ def test_python_model_with_lib(boto_session, sagemaker_client,
174174

175175

176176
def test_resnet_with_inference_handler(
177-
boto_session, image_uri, instance_type, resnet_model_tar_path, framework_version
177+
boto_session, image_uri, instance_type, resnet_model_tar_path, version
178178
):
179-
if Version(framework_version) >= Version("2.6"):
179+
if Version(version) >= Version("2.6"):
180180
pytest.skip("The inference script currently uses v1 compat features, making it incompatible with TF>=2.6")
181181

182182
sagemaker_session = sagemaker.Session(boto_session=boto_session)

0 commit comments

Comments
 (0)