diff options
author | 2022-06-01 11:09:30 -0700 | |
---|---|---|
committer | 2022-06-01 11:09:30 -0700 | |
commit | b0fb2bf8e52f9e340a8f77503c68daafeed4d41d (patch) | |
tree | 132d3b703c1a29f5cc6de484d6317220ffc94da5 /tests/gunicorn_utils.py | |
parent | Merge #139 - use pip-tools instead of Pipenv (diff) | |
parent | Fix 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.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(): |