diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-05-15 08:57:44 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-05-15 09:43:29 +0900 |
commit | 3fc524a5f5d810597757c63c51106819b520680f (patch) | |
tree | b649242a6fb86ee5f17b97d036074cbc61d3a054 /test/scenario_test/vrf_neighbor_test2.py | |
parent | efd215d814f0fc686c5d1ea7256bef77ce3ee194 (diff) |
test/lib/gobgp: Rename graceful_restart() to stop_gobgp()
GoBGPContainer.graceful_restart() does not "restart" GoBGP daemon, but
just stops (kills) GoBGP daemon. Then this patch renames
graceful_restart() to stop_gobgp() to avoid confusion.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/scenario_test/vrf_neighbor_test2.py')
-rw-r--r-- | test/scenario_test/vrf_neighbor_test2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scenario_test/vrf_neighbor_test2.py b/test/scenario_test/vrf_neighbor_test2.py index 584fc8fa..6aa6a63e 100644 --- a/test/scenario_test/vrf_neighbor_test2.py +++ b/test/scenario_test/vrf_neighbor_test2.py @@ -125,7 +125,7 @@ class GoBGPTestBase(unittest.TestCase): wait_for_completion(lambda: len(self.g5.get_global_rib()) == 1) def test_06_graceful_restart(self): - self.g1.graceful_restart() + self.g1.stop_gobgp() self.g3.wait_for(expected_state=BGP_FSM_ACTIVE, peer=self.g1) wait_for_completion(lambda: len(self.g3.get_global_rib(rf="vpnv4")) == 2) |