diff options
author | Wataru Ishida <ishida.wataru@lab.ntt.co.jp> | 2016-08-20 19:15:53 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-08-25 15:53:14 +0900 |
commit | 3235c0618cfc320c0ad751d83d850ec714fa1c49 (patch) | |
tree | 9bbc51cdb4e549dcb0567248d16c99dffd74e68d /test/scenario_test/monitor_test.py | |
parent | b3c874da2581eb71d8c137d956e792565193ec0e (diff) |
api/cli: kill cmd package custom path/destination structs
reuse table package
Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test/monitor_test.py')
-rw-r--r-- | test/scenario_test/monitor_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scenario_test/monitor_test.py b/test/scenario_test/monitor_test.py index 147391d1..4c5df7c1 100644 --- a/test/scenario_test/monitor_test.py +++ b/test/scenario_test/monitor_test.py @@ -87,7 +87,7 @@ class GoBGPTestBase(unittest.TestCase): while True: info = qu.get(timeout=120) print 'monitor got {0}'.format(info) - self.assertTrue(info['isWithdraw']) + self.assertTrue(info['withdrawal']) break |