Skip to content

Commit ad7e75a

Browse files
committed
Fix tests
1 parent fba7ec7 commit ad7e75a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

tests/testing/python/test_parser_registry.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -116,24 +116,6 @@ def test_django_5():
116116
assert len(result[0].stacktrace) == 0
117117

118118

119-
120-
def test_django_6():
121-
"""Test parsing Django output with traceback"""
122-
with open(_get_test_data_path("django_output_6.txt")) as f:
123-
log = f.read()
124-
125-
result = parse_log(log, "django/django")
126-
127-
assert len(result) == 89
128-
129-
failed = [r for r in result if r.status == TestStatus.FAILED]
130-
assert len(failed) == 5
131-
132-
for fail in failed:
133-
print(fail.failure_output)
134-
135-
for i, res in enumerate(result):
136-
print(f"{i} {res.name}")
137119

138120

139121
def test_django_error():

0 commit comments

Comments
 (0)