Skip to content

Commit bcecc0e

Browse files
committed
update model_repository test to fix python 3.8 tests
1 parent 97e0210 commit bcecc0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_model_repository.py

Lines changed: 1 addition & 1 deletion
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
390+
get_model.return_value = RestObj({"id": "12345"})
391391
request.side_effect = urllib.error.HTTPError(
392392
url="http://demo.sas.com",
393393
code=404,

0 commit comments

Comments
 (0)