aboutsummaryrefslogtreecommitdiffstats
path: root/tests/gunicorn_utils.py
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-05-30 20:52:26 -0700
committerGravatar MarkKoz <[email protected]>2022-05-30 20:52:26 -0700
commit409a76fa4aee3e2ee979f402cb4662cfd0a6aef4 (patch)
treebe6833aa149fd77a97f8a95242cf81973c4fdddf /tests/gunicorn_utils.py
parentMake Sentry SDK and gunicorn optional dependencies (diff)
Remove redundant module for creating the WSGI app
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():