Skip to content
This repository was archived by the owner on Jan 1, 2026. It is now read-only.

Commit 1348d4a

Browse files
committed
Fixes line length
1 parent e33a07a commit 1348d4a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,8 @@ class GenerateTestSuiteTestCase(unittest.TestCase):
106106
# ref: https://raw.githubusercontent.com/windyroad/JUnit-Schema/master/JUnit.xsd
107107
# @TODO: Better thing to do here would be to curl or otherwise access the
108108
# spec above instead of hardcoding pieces of it here
109-
junit_testsuite_attributes = ['name', 'timestamp', 'hostname', 'tests', 'failures', 'errors', 'time']
109+
junit_testsuite_attributes = ['name', 'timestamp', 'hostname', 'tests',
110+
'failures', 'errors', 'time']
110111
junit_testcase_attributes = ['name', 'classname', 'time']
111112
junit_error_attributes = ['type']
112113

@@ -190,7 +191,8 @@ class GenerateSingleSuccessTestSuite(unittest.TestCase):
190191
# ref: https://raw.githubusercontent.com/windyroad/JUnit-Schema/master/JUnit.xsd
191192
# @TODO: Better thing to do here would be to curl or otherwise access the
192193
# spec above instead of hardcoding pieces of it here
193-
junit_testsuite_attributes = ['name', 'timestamp', 'hostname', 'tests', 'failures', 'errors', 'time']
194+
junit_testsuite_attributes = ['name', 'timestamp', 'hostname', 'tests',
195+
'failures', 'errors', 'time']
194196
junit_testcase_attributes = ['name', 'classname', 'time']
195197

196198
def test(self): # type: () -> None

0 commit comments

Comments
 (0)