aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/fixtures.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/fixtures.py
parent070069cb6eb71b92a9c4e46f3d4cfabb67f4eb3f (diff)
downloadfatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.tar.gz
fatcat-28d2d94a9100c1a809955cde93fdbb7a36263057.zip
refactor all python source for client lib name
Diffstat (limited to 'python/tests/fixtures.py')
-rw-r--r--python/tests/fixtures.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tests/fixtures.py b/python/tests/fixtures.py
index d958b5dc..78742114 100644
--- a/python/tests/fixtures.py
+++ b/python/tests/fixtures.py
@@ -6,9 +6,9 @@ import signal
import pytest
from dotenv import load_dotenv
import fatcat_web
-import fatcat_client
+import fatcat_openapi_client
-from fatcat_client import *
+from fatcat_openapi_client import *
from fatcat_tools import authenticated_api
@pytest.fixture
@@ -85,6 +85,6 @@ def test_get_changelog_entry(api):
## Helpers ##################################################################
def quick_eg(api_inst):
- eg = api_inst.create_editgroup(fatcat_client.Editgroup())
+ eg = api_inst.create_editgroup(fatcat_openapi_client.Editgroup())
return eg