runtest-junitxml: work with python3

This commit is contained in:
Harald Welte 2021-12-15 19:30:07 +01:00
parent fdda7d8a6e
commit c0cc718853
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3
# Alternative executor for m3ua tests suite by Michael Tuexen's nplab
# (C) 2017 by Harald Welte <laforge@gnumonks.org>
@ -97,4 +97,4 @@ for c in cases:
time.sleep(options.sleep)
ts = TestSuite(TEST, tcs)
print(TestSuite.to_xml_string([ts]))
print((TestSuite.to_xml_string([ts])))