diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-04-18 14:47:54 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-04-18 14:47:54 +0900 |
commit | 353c9c1711ac27ec38ac2fa179e02935e5c5e879 (patch) | |
tree | ce4dc9b3224679cc0ea83ea8a940de89aecfcc5e /test/scenario_test | |
parent | 86d709fa3fb7f92141d8d0cfcad633a57ecd6bde (diff) |
test: remove unnecessary root check in bgp_unnumbered_test.py
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test')
-rw-r--r-- | test/scenario_test/bgp_unnumbered_test.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/scenario_test/bgp_unnumbered_test.py b/test/scenario_test/bgp_unnumbered_test.py index fd511946..a77e6a5b 100644 --- a/test/scenario_test/bgp_unnumbered_test.py +++ b/test/scenario_test/bgp_unnumbered_test.py @@ -88,9 +88,6 @@ class GoBGPTestBase(unittest.TestCase): if __name__ == '__main__': - if os.geteuid() is not 0: - print "you are not root." - sys.exit(1) output = local("which docker 2>&1 > /dev/null ; echo $?", capture=True) if int(output) is not 0: print "docker not found" |