Skip to content

Commit

Permalink
Fix the directory iteration in prepare_speculos_args when looking for…
Browse files Browse the repository at this point in the history
… the main app in plugin mode
  • Loading branch information
fbeutin-ledger committed Feb 20, 2024
1 parent 15a3774 commit 0dec9be
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/conftests/test_base_conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def prepare_base_dir(directory: Path) -> Tuple[Path, Path]:
(directory / "deps" / "dep" / "build" / "stax" / "bin").mkdir(parents=True, exist_ok=True)
dep_path = (directory / "deps" / "dep" / "build" / "stax" / "bin" / "app.elf")
dep_path.touch()
token_file_path = (directory / "deps" / ".your file goes there")
token_file_path.touch()
app_path = (directory / "build" / "stax" / "bin" / "app.elf")
app_path.touch()
return app_path, dep_path
Expand Down

0 comments on commit 0dec9be

Please sign in to comment.