aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/api_filesets.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:49:36 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-09-05 18:49:36 -0700
commit28d2d94a9100c1a809955cde93fdbb7a36263057 (patch)
treeb61675cbd21f28da15dabf4361cf86bad565f1c4 /python/tests/api_filesets.py
parent070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f (diff)
downloadfatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.tar.gz
fatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.zip
refactor all python source for client lib name
Diffstat (limited to 'python/tests/api_filesets.py')
-rw-r--r--python/tests/api_filesets.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/api_filesets.py b/python/tests/api_filesets.py
index 48f58cc8..7f3235cb 100644
--- a/python/tests/api_filesets.py
+++ b/python/tests/api_filesets.py
@@ -3,8 +3,8 @@ import json
import pytest
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 *
@@ -98,6 +98,6 @@ def test_bad_fileset(api):
]
for b in bad_list:
- with pytest.raises(fatcat_client.rest.ApiException):
+ with pytest.raises(fatcat_openapi_client.rest.ApiException):
api.create_fileset(eg.editgroup_id, b)