From 56db2ccd3fd3046b465373777d7da2b33ff449ea Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Sun, 4 Nov 2018 00:03:10 -0600 Subject: [PATCH] Fix bad test --- tests/test_factory.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_factory.py b/tests/test_factory.py index 98e6b43..caaa0d2 100644 --- a/tests/test_factory.py +++ b/tests/test_factory.py @@ -4,8 +4,3 @@ from flaskr import create_app def test_config(): assert not create_app().testing assert create_app({'TESTING': True}).testing - - -def test_hello(client): - response = client.get('/hello') - assert response.data == b'Hello, World!'