diff options
author | 2022-05-30 20:52:26 -0700 | |
---|---|---|
committer | 2022-05-30 20:52:26 -0700 | |
commit | 409a76fa4aee3e2ee979f402cb4662cfd0a6aef4 (patch) | |
tree | be6833aa149fd77a97f8a95242cf81973c4fdddf /tests/gunicorn_utils.py | |
parent | Make 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.py | 4 |
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(): |