From d324b27e41aee52b044e5647a4a13aecc9130c3e Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Fri, 30 Jan 2015 18:59:09 -0800 Subject: [PATCH] Replace splat import in tests. --- tests/conftest.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index a7dd8586..dfe86e8f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,7 @@ import pytest -from utils import * -from pgcli.pgexecute import PGExecute +from utils import (POSTGRES_HOST, POSTGRES_USER, create_db, db_connection, +drop_tables) +import pgcli.pgexecute @pytest.yield_fixture(scope="function") @@ -21,5 +22,5 @@ def cursor(connection): @pytest.fixture def executor(connection): - return PGExecute(database='_test_db', user=POSTGRES_USER, host=POSTGRES_HOST, - password=None, port=None) + return pgcli.pgexecute.PGExecute(database='_test_db', user=POSTGRES_USER, + host=POSTGRES_HOST, password=None, port=None)