mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-29 22:20:30 +00:00
analyze_outcomes: fix missing format for args/kwargs
Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
parent
781c23416e
commit
735794c745
@ -35,7 +35,7 @@ class Results:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _print_line(fmt, *args, **kwargs):
|
def _print_line(fmt, *args, **kwargs):
|
||||||
sys.stderr.write(fmt + '\n', *args, **kwargs)
|
sys.stderr.write((fmt + '\n').format(*args, **kwargs))
|
||||||
|
|
||||||
class TestCaseOutcomes:
|
class TestCaseOutcomes:
|
||||||
"""The outcomes of one test case across many configurations."""
|
"""The outcomes of one test case across many configurations."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user