diff --git a/tfjm/tests.py b/tfjm/tests.py index 3db574e..f7a154f 100644 --- a/tfjm/tests.py +++ b/tfjm/tests.py @@ -14,11 +14,11 @@ class TestLoadModules(TestCase): """ def test_asgi(self): from tfjm import asgi - self.assertTrue(isinstance(asgi.application, ASGIHandler)) + self.assertIsNotNone(asgi) def test_wsgi(self): from tfjm import wsgi - self.assertTrue(isinstance(wsgi.application, WSGIHandler)) + self.assertIsNotNone(wsgi) def test_load_production_settings(self): os.putenv("TFJM_STAGE", "prod")