Skip to content

Commit 0b6867a

Browse files
committed
codestyle: fix line too long
1 parent 2e0e191 commit 0b6867a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/sagemaker/jumpstart/hub/test_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ def test_construct_hub_model_reference_arn_from_inputs():
102102

103103
assert (
104104
utils.construct_hub_model_reference_arn_from_inputs(hub_arn, model_name, version)
105-
== "arn:aws:sagemaker:us-west-2:123456789123:hub-content/my-mock-hub/ModelReference/pytorch-ic-imagenet-v2/1.0.2"
105+
== hub_arn + "/ModelReference/pytorch-ic-imagenet-v2/1.0.2"
106106
)
107107

108108
version = "*"
109109
assert (
110110
utils.construct_hub_model_reference_arn_from_inputs(hub_arn, model_name, version)
111-
== "arn:aws:sagemaker:us-west-2:123456789123:hub-content/my-mock-hub/ModelReference/pytorch-ic-imagenet-v2/*"
111+
== hub_arn + "ModelReference/pytorch-ic-imagenet-v2/*"
112112
)
113113

114114

0 commit comments

Comments
 (0)