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 9e29524 commit e0b8467Copy full SHA for e0b8467
tests/integ/sagemaker/jumpstart/private_hub/test_hub_content.py
@@ -39,6 +39,8 @@ def test_hub_model_reference(setup):
39
describe_model_response = hub_instance.describe_model(model_name=model_id)
40
assert describe_model_response is not None
41
assert type(describe_model_response) == DescribeHubContentResponse
42
+ assert describe_model_response.hub_content_name == model_id
43
+ assert describe_model_response.hub_content_type == "ModelReference"
44
45
delete_model_response = hub_instance.delete_model_reference(model_name=model_id)
46
assert delete_model_response is not None
0 commit comments