summaryrefslogtreecommitdiffstats
path: root/test/framework.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2019-01-29 11:49:09 +0100
committerDamjan Marion <dmarion@me.com>2019-01-31 22:10:01 +0000
commit0ede47aa452faceed85965ddb727c305059b856a (patch)
tree2d3a03c06fe86bd8ffc1050ee8c88549d1c6f0fd /test/framework.py
parent362456a9bdc5ffc440bf776c3685ba81b8513f6e (diff)
make test: fix logging
Change-Id: I3867d50746f0f424c8e94929171363e5b2e4d470 Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r--test/framework.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py
index 2a2dfd4b11f..9151fa5462d 100644
--- a/test/framework.py
+++ b/test/framework.py
@@ -532,7 +532,7 @@ class VppTestCase(unittest.TestCase):
stderr_log(single_line_delim)
stderr_log('VPP output to stderr while running %s:', cls.__name__)
stderr_log(single_line_delim)
- vpp_output = "".join(str(cls.vpp_stderr_deque))
+ vpp_output = "".join(cls.vpp_stderr_deque)
with open(cls.tempdir + '/vpp_stderr.txt', 'w') as f:
f.write(vpp_output)
stderr_log('\n%s', vpp_output)