summaryrefslogtreecommitdiffstats
path: root/python/tests/api_filesets.py
diff options
context:
space:
mode:
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)