# HG changeset patch # User Ronny Pfannschmidt # Date 2015-04-22 01:10:29 # Node ID 9dd17228c0dc66c4ab865e107e8e9f0349b94976 # Parent 12ae08b2fe3f168ac42c2f009eadee2f4c000c0f tests: avoid 'import *' in api tests diff --git a/kallithea/tests/api/test_api_git.py b/kallithea/tests/api/test_api_git.py --- a/kallithea/tests/api/test_api_git.py +++ b/kallithea/tests/api/test_api_git.py @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from kallithea.tests import * +from kallithea.tests import TestController, GIT_REPO from kallithea.tests.api.api_base import _BaseTestApi diff --git a/kallithea/tests/api/test_api_hg.py b/kallithea/tests/api/test_api_hg.py --- a/kallithea/tests/api/test_api_hg.py +++ b/kallithea/tests/api/test_api_hg.py @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from kallithea.tests import * +from kallithea.tests import TestController, HG_REPO from kallithea.tests.api.api_base import _BaseTestApi