From: Douglas Bagnall Date: Thu, 11 Oct 2018 01:51:55 +0000 (+1300) Subject: python/tests/kcc_*: avoid * imports X-Git-Tag: tdb-1.3.17~1171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbf1740b33d133ace54258122ad858c5f275046e;p=thirdparty%2Fsamba.git python/tests/kcc_*: avoid * imports Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/python/samba/tests/kcc/graph_utils.py b/python/samba/tests/kcc/graph_utils.py index 2ba7f440664..3cbcb1b9df3 100644 --- a/python/samba/tests/kcc/graph_utils.py +++ b/python/samba/tests/kcc/graph_utils.py @@ -21,7 +21,13 @@ import samba import samba.tests -from samba.kcc.graph_utils import * +from samba.kcc.graph_utils import GraphError +from samba.kcc.graph_utils import (verify_graph_complete, + verify_graph_connected, + verify_graph_connected_under_edge_failures, + verify_graph_forest, + verify_graph_connected_under_vertex_failures, + verify_graph_no_lonely_vertices) import itertools diff --git a/python/samba/tests/kcc/kcc_utils.py b/python/samba/tests/kcc/kcc_utils.py index d8c084e9652..14b65429c95 100644 --- a/python/samba/tests/kcc/kcc_utils.py +++ b/python/samba/tests/kcc/kcc_utils.py @@ -20,7 +20,8 @@ """Tests for samba.kcc.kcc_utils""" import samba import samba.tests -from samba.kcc.kcc_utils import * +from samba.kcc.kcc_utils import new_connection_schedule, drsblobs +from samba.kcc.kcc_utils import uncovered_sites_to_cover from samba.credentials import Credentials from samba.auth import system_session from samba.samdb import SamDB