From 409a76fa4aee3e2ee979f402cb4662cfd0a6aef4 Mon Sep 17 00:00:00 2001 From: MarkKoz <1515135+MarkKoz@users.noreply.github.com> Date: Mon, 30 May 2022 20:52:26 -0700 Subject: Remove redundant module for creating the WSGI app --- tests/gunicorn_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/gunicorn_utils.py') 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(): -- cgit v1.2.3