aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gunicorn_utils.py
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2022-06-01 11:09:30 -0700
committerGravatar GitHub <[email protected]>2022-06-01 11:09:30 -0700
commitb0fb2bf8e52f9e340a8f77503c68daafeed4d41d (patch)
tree132d3b703c1a29f5cc6de484d6317220ffc94da5 /tests/gunicorn_utils.py
parentMerge #139 - use pip-tools instead of Pipenv (diff)
parentFix typo in Dockerfile comment (diff)
Merge #140 - add pyproject.toml and versioning
Diffstat (limited to 'tests/gunicorn_utils.py')
-rw-r--r--tests/gunicorn_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gunicorn_utils.py b/tests/gunicorn_utils.py
index f2d9b6d..b417b1b 100644
--- a/tests/gunicorn_utils.py
+++ b/tests/gunicorn_utils.py
@@ -17,8 +17,8 @@ class _StandaloneApplication(Application):
pass
def load(self):
- from snekbox.api.app import application
- return application
+ from snekbox.api import SnekAPI
+ return SnekAPI()
def load_config(self):
for key, value in self.options.items():