Skip to content

Commit

Permalink
Merge pull request #75 from firedancer-io/save-failures-fix
Browse files Browse the repository at this point in the history
fix directory for failures
  • Loading branch information
kbhargava-jump authored Sep 3, 2024
2 parents 697d4d1 + 756f62f commit 4f7b678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test_suite/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ def run_tests(
failed += 1
failed_tests.append(file_stem)
if save_failures:
failed_protobufs = list(input_dir.glob(f"{file_stem}*"))
failed_protobufs = list(file_or_dir.glob(f"{file_stem}*"))
for failed_protobuf in failed_protobufs:
shutil.copy(failed_protobuf, failed_protobufs_dir)

Expand Down

0 comments on commit 4f7b678

Please sign in to comment.