summaryrefslogtreecommitdiffhomepage
path: root/test/lib/exabgp.py
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-03-09 15:56:50 +0900
committerIWASE Yusuke <iwase.yusuke0@gmail.com>2017-03-16 16:14:20 +0900
commitecc9b5631eb68a5148affce56765fe661bf1f2f8 (patch)
treeecac4b8d561dde01b09eaef81fc0cc8b0f3dff51 /test/lib/exabgp.py
parentafc1fcb1e37d34813dcaede88773956642bdd6c8 (diff)
test/lib: Enable to disply name of config file
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/lib/exabgp.py')
-rw-r--r--test/lib/exabgp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/exabgp.py b/test/lib/exabgp.py
index 511a7890..dbf8f023 100644
--- a/test/lib/exabgp.py
+++ b/test/lib/exabgp.py
@@ -151,7 +151,7 @@ class ExaBGPContainer(BGPContainer):
cmd << '}'
with open('{0}/exabgpd.conf'.format(self.config_dir), 'w') as f:
- print colors.yellow('[{0}\'s new config]'.format(self.name))
+ print colors.yellow('[{0}\'s new exabgpd.conf]'.format(self.name))
print colors.yellow(str(cmd))
f.write(str(cmd))
@@ -199,6 +199,6 @@ class RawExaBGPContainer(ExaBGPContainer):
def create_config(self):
with open('{0}/exabgpd.conf'.format(self.config_dir), 'w') as f:
- print colors.yellow('[{0}\'s new config]'.format(self.name))
+ print colors.yellow('[{0}\'s new exabgpd.conf]'.format(self.name))
print colors.yellow(self.config)
f.write(self.config)