From 0f102be98671abc253e2e73aba15073458c1e444 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Thu, 16 Mar 2017 13:44:02 +0900 Subject: scenario_test: pep8 and pylint improvements Signed-off-by: IWASE Yusuke --- test/scenario_test/vrf_neighbor_test2.py | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'test/scenario_test/vrf_neighbor_test2.py') diff --git a/test/scenario_test/vrf_neighbor_test2.py b/test/scenario_test/vrf_neighbor_test2.py index 13596f26..cee3bf76 100644 --- a/test/scenario_test/vrf_neighbor_test2.py +++ b/test/scenario_test/vrf_neighbor_test2.py @@ -13,18 +13,25 @@ # See the License for the specific language governing permissions and # limitations under the License. -import unittest -from fabric.api import local -from lib import base -from lib.base import wait_for_completion -from lib.gobgp import * -from lib.quagga import * +from __future__ import absolute_import + import sys -import os import time +import unittest + +from fabric.api import local import nose + from noseplugin import OptionParser, parser_option +from lib import base +from lib.base import ( + BGP_FSM_ACTIVE, + BGP_FSM_ESTABLISHED, + wait_for_completion, +) +from lib.gobgp import GoBGPContainer + class GoBGPTestBase(unittest.TestCase): -- cgit v1.2.3