diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-05 18:49:36 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-05 18:49:36 -0700 |
commit | 28d2d94a9100c1a809955cde93fdbb7a36263057 (patch) | |
tree | b61675cbd21f28da15dabf4361cf86bad565f1c4 /python/tests/api_editgroups.py | |
parent | 070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f (diff) | |
download | fatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.tar.gz fatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.zip |
refactor all python source for client lib name
Diffstat (limited to 'python/tests/api_editgroups.py')
-rw-r--r-- | python/tests/api_editgroups.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/tests/api_editgroups.py b/python/tests/api_editgroups.py index 5346d909..d82c9233 100644 --- a/python/tests/api_editgroups.py +++ b/python/tests/api_editgroups.py @@ -4,8 +4,8 @@ import pytest import datetime from copy import copy -from fatcat_client import * -from fatcat_client.rest import ApiException +from fatcat_openapi_client import * +from fatcat_openapi_client.rest import ApiException from fixtures import * @@ -52,9 +52,9 @@ def test_editgroup_submit(api): assert eg3.submitted assert eg3.changelog_index - with pytest.raises(fatcat_client.rest.ApiException): + with pytest.raises(fatcat_openapi_client.rest.ApiException): api.update_editgroup(eg.editgroup_id, eg3, submit=True) - with pytest.raises(fatcat_client.rest.ApiException): + with pytest.raises(fatcat_openapi_client.rest.ApiException): eg3.description = "something" api.update_editgroup(eg.editgroup_id, eg3) |