Skip to content

Commit 905f608

Browse files
committed
chore: remove unused fallback case
1 parent a3d840c commit 905f608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/grizzly/replay/replay.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ def report_to_filesystem(
195195
if others:
196196
reporter = FilesystemReporter(dst / "other_reports", major_bucket=False)
197197
for report in others:
198-
reporter.submit(tests or [], report)
198+
reporter.submit(tests, report)
199199
expected = tuple(x.report for x in results if x.expected)
200200
if expected:
201201
reporter = FilesystemReporter(dst / "reports", major_bucket=False)
202202
for report in expected:
203-
reporter.submit(tests or [], report)
203+
reporter.submit(tests, report)
204204

205205
@staticmethod
206206
def report_to_fuzzmanager(

0 commit comments

Comments
 (0)