test_case.py: add new line between test cases

Signed-off-by: Przemyslaw Stekiel <[email protected]>
This commit is contained in:
Przemyslaw Stekiel
2021-11-09 14:45:40 +01:00
parent e3fcb5087a
commit 729c244819
+1 -1
View File
@@ -81,7 +81,7 @@ class TestCase:
out.write(self.description + '\n')
if self.dependencies:
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,
test_cases: Iterable[TestCase],