summaryrefslogtreecommitdiff
path: root/tests/topotests/lib/topotest.py
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@users.noreply.github.com>2021-03-03 15:43:38 -0500
committerGitHub <noreply@github.com>2021-03-03 15:43:38 -0500
commitbb4bcaad9a3a15b835a38c5a6256b5d32cfd895e (patch)
tree3072608ae5b2f592ffd561b759028bbb30763ced /tests/topotests/lib/topotest.py
parentfecbc5d2e7ab5c494373a71d2573c41a9806c82b (diff)
parent67c3bf97c3e1be192657ad205160c199a40c7266 (diff)
Merge pull request #8190 from gromit1811/fix_topotest_pylint
tests: Fix topotest.py pylint errors
Diffstat (limited to 'tests/topotests/lib/topotest.py')
-rw-r--r--tests/topotests/lib/topotest.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py
index 1e6ef1b2b3..60f6c9f943 100644
--- a/tests/topotests/lib/topotest.py
+++ b/tests/topotests/lib/topotest.py
@@ -1424,7 +1424,7 @@ class Router(Node):
zebra_option = self.daemons_options["zebra"]
self.cmd(
"ASAN_OPTIONS=log_path=zebra.asan {0} {1} --log file:zebra.log --log-level debug -s 90000000 -d > zebra.out 2> zebra.err".format(
- zebra_path, zebra_option, self.logdir, self.name
+ zebra_path, zebra_option
)
)
logger.debug("{}: {} zebra started".format(self, self.routertype))
@@ -1439,7 +1439,7 @@ class Router(Node):
staticd_option = self.daemons_options["staticd"]
self.cmd(
"ASAN_OPTIONS=log_path=staticd.asan {0} {1} --log file:staticd.log --log-level debug -d > staticd.out 2> staticd.err".format(
- staticd_path, staticd_option, self.logdir, self.name
+ staticd_path, staticd_option
)
)
logger.debug("{}: {} staticd started".format(self, self.routertype))
@@ -1831,8 +1831,8 @@ class LinuxRouter(Router):
class FreeBSDRouter(Router):
"A FreeBSD Router Node with IPv4/IPv6 forwarding enabled."
- def __init__(eslf, name, **params):
- Router.__init__(Self, name, **params)
+ def __init__(self, name, **params):
+ Router.__init__(self, name, **params)
class LegacySwitch(OVSSwitch):