From 545a2a2980c94abcd09c0893918713e211076d6d Mon Sep 17 00:00:00 2001 From: Katrina Alaimo <70788275+katrinaalaimo@users.noreply.github.com> Date: Thu, 13 May 2021 11:46:18 +0900 Subject: [PATCH] Update account_tests.py Importing `client` no longer needed with the addition of conftest.py --- app/ch14_testing/final/tests/account_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ch14_testing/final/tests/account_tests.py b/app/ch14_testing/final/tests/account_tests.py index 4f5aa156..9c335dba 100644 --- a/app/ch14_testing/final/tests/account_tests.py +++ b/app/ch14_testing/final/tests/account_tests.py @@ -2,7 +2,7 @@ from pypi_org.data.users import User from pypi_org.viewmodels.account.register_viewmodel import RegisterViewModel -from tests.test_client import flask_app, client +from tests.test_client import flask_app import unittest.mock