diff options
author | Wataru Ishida <ishida.wataru@lab.ntt.co.jp> | 2016-11-11 10:12:57 +0000 |
---|---|---|
committer | Wataru Ishida <ishida.wataru@lab.ntt.co.jp> | 2016-11-14 02:15:45 +0000 |
commit | 3f2dd34d37b5ca4874399d7eaff9bbb8b7975cd4 (patch) | |
tree | 50a37b0a7b09d9f11b6a83d5e701bc1e7ce31806 /test/lib/base.py | |
parent | 480eb327831d56a795ea28d2c7293ab134d78a47 (diff) |
client: add golang client library
Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/lib/base.py')
-rw-r--r-- | test/lib/base.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/base.py b/test/lib/base.py index c37fe75d..10b50b46 100644 --- a/test/lib/base.py +++ b/test/lib/base.py @@ -29,9 +29,9 @@ DEFAULT_TEST_BASE_DIR = '/tmp/gobgp' TEST_PREFIX = DEFAULT_TEST_PREFIX TEST_BASE_DIR = DEFAULT_TEST_BASE_DIR -BGP_FSM_IDLE = 'BGP_FSM_IDLE' -BGP_FSM_ACTIVE = 'BGP_FSM_ACTIVE' -BGP_FSM_ESTABLISHED = 'BGP_FSM_ESTABLISHED' +BGP_FSM_IDLE = 'idle' +BGP_FSM_ACTIVE = 'active' +BGP_FSM_ESTABLISHED = 'established' BGP_ATTR_TYPE_ORIGIN = 1 BGP_ATTR_TYPE_AS_PATH = 2 |