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 bcecc0e commit 013443fCopy full SHA for 013443f
tests/unit/test_model_repository.py
@@ -387,7 +387,7 @@ def test_get_model_with_versions():
387
mr.get_model_with_versions(model=RestObj)
388
389
is_uuid.return_value = False
390
- get_model.return_value = RestObj({"id": "12345"})
+ get_model.return_value = RestObj({"id": "123456"})
391
request.side_effect = urllib.error.HTTPError(
392
url="http://demo.sas.com",
393
code=404,
@@ -412,7 +412,7 @@ def test_get_model_with_versions():
412
413
request.assert_any_call(
414
"GET",
415
- "/models/sasctl.core.RestObj['id']/versions",
+ "/models/123456/versions",
416
headers={"Accept": "application/vnd.sas.collection+json"},
417
)
418
0 commit comments