Skip to content

Commit 013443f

Browse files
committed
further testing updates
1 parent bcecc0e commit 013443f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_model_repository.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def test_get_model_with_versions():
387387
mr.get_model_with_versions(model=RestObj)
388388

389389
is_uuid.return_value = False
390-
get_model.return_value = RestObj({"id": "12345"})
390+
get_model.return_value = RestObj({"id": "123456"})
391391
request.side_effect = urllib.error.HTTPError(
392392
url="http://demo.sas.com",
393393
code=404,
@@ -412,7 +412,7 @@ def test_get_model_with_versions():
412412

413413
request.assert_any_call(
414414
"GET",
415-
"/models/sasctl.core.RestObj['id']/versions",
415+
"/models/123456/versions",
416416
headers={"Accept": "application/vnd.sas.collection+json"},
417417
)
418418

0 commit comments

Comments
 (0)