We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcea55 commit 801d2c8Copy full SHA for 801d2c8
assignments/week05/lab/flaskr_2/flaskr_tests.py
@@ -9,7 +9,8 @@ class FlaskrTestCase(unittest.TestCase):
9
def setUp(self):
10
self.db_fd, flaskr.app.config['DATABASE'] = tempfile.mkstemp()
11
flaskr.app.config['TESTING'] = True
12
- self.app = flaskr.app.test_client()
+ self.client = flaskr.app.test_client()
13
+ self.app = flaskr.app
14
flaskr.init_db()
15
16
def tearDown(self):
0 commit comments