mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-09 04:10:35 +00:00
test_case.py: add new line between test cases
Signed-off-by: Przemyslaw Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
parent
292759319f
commit
e2b50957df
|
@ -81,7 +81,7 @@ class TestCase:
|
||||||
out.write(self.description + '\n')
|
out.write(self.description + '\n')
|
||||||
if self.dependencies:
|
if self.dependencies:
|
||||||
out.write('depends_on:' + ':'.join(self.dependencies) + '\n')
|
out.write('depends_on:' + ':'.join(self.dependencies) + '\n')
|
||||||
out.write(self.function + ':' + ':'.join(self.arguments))
|
out.write(self.function + ':' + ':'.join(self.arguments) + '\n')
|
||||||
|
|
||||||
def write_data_file(filename: str,
|
def write_data_file(filename: str,
|
||||||
test_cases: Iterable[TestCase],
|
test_cases: Iterable[TestCase],
|
||||||
|
|
Loading…
Reference in a new issue