Skip to content

Commit ff97daa

Browse files
author
Will Kukkamalla
committed
Merge branch 'refactor-test-name-format' of github.com:wkukka1/markus-autotesting into refactor-test-name-format
2 parents 6d98ef4 + 4ac5259 commit ff97daa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

server/autotest_server/testers/py/py_tester.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ def addSuccess(self, test: unittest.TestCase) -> None:
2929
Record that a test passed.
3030
"""
3131
self.results.append(
32-
{"status": "success", "name": self._format_test_name(test), "errors": "", "description": test._testMethodDoc}
32+
{
33+
"status": "success",
34+
"name": self._format_test_name(test),
35+
"errors": "",
36+
"description": test._testMethodDoc,
37+
}
3338
)
3439
self.successes.append(test)
3540

0 commit comments

Comments
 (0)