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 13efaef commit 85d372dCopy full SHA for 85d372d
tests/unit/test_tuner.py
@@ -1642,7 +1642,7 @@ def test_tags_prefixes_jumpstart_models(
1642
role=ROLE,
1643
)
1644
1645
- assert sagemaker_session.create_model.call_args_list[0][0][0].startswith(
+ assert sagemaker_session.create_model.call_args_list[0][1]["name"].startswith(
1646
JUMPSTART_RESOURCE_BASE_NAME
1647
1648
@@ -1763,7 +1763,7 @@ def test_no_tags_prefixes_non_jumpstart_models(
1763
1764
1765
1766
- assert not sagemaker_session.create_model.call_args_list[0][0][0].startswith(
+ assert not sagemaker_session.create_model.call_args_list[0][1]["name"].startswith(
1767
1768
1769
0 commit comments