summaryrefslogtreecommitdiffstats
path: root/sdnvpn/test/functest/testcase_9.py
diff options
context:
space:
mode:
authorLinda Wang <wangwulin@huawei.com>2017-10-19 07:04:08 +0000
committerLinda Wang <wangwulin@huawei.com>2017-10-19 07:12:13 +0000
commit240c496340d76be0a64726792de381d8fbc1db38 (patch)
tree43ab5b1a0d1df0b9b24846f674b3b51118d30c3e /sdnvpn/test/functest/testcase_9.py
parentcd6a598f8e0c18820783d0b0e9d3135fa833d826 (diff)
Remove argparse for adding argument -r
Change-Id: Iaa2ddc3f655a2bf85785a99a519e0df78c298037 Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'sdnvpn/test/functest/testcase_9.py')
-rw-r--r--sdnvpn/test/functest/testcase_9.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/sdnvpn/test/functest/testcase_9.py b/sdnvpn/test/functest/testcase_9.py
index 2fd067e..45e9d5b 100644
--- a/sdnvpn/test/functest/testcase_9.py
+++ b/sdnvpn/test/functest/testcase_9.py
@@ -13,7 +13,6 @@
# - Start a BGP router with OpenDaylight
# - Add the functest Quagga as a neighbor
# - Verify that the OpenDaylight and gateway Quagga peer
-import argparse
import logging
import sys
@@ -27,14 +26,6 @@ TESTCASE_CONFIG = sdnvpn_config.TestcaseConfig(
logger = logging.getLogger('__name__')
-parser = argparse.ArgumentParser()
-
-parser.add_argument("-r", "--report",
- help="Create json result file",
- action="store_true")
-
-args = parser.parse_args()
-
def main():
results = Results(COMMON_CONFIG.line_length)