Skip to content

Commit

Permalink
Fix unit test....
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Jul 25, 2024
1 parent 3f42a51 commit 770ea43
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/utils/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def test_find_application_ok_rust(self):
app_path = Path(appname)
os.chdir(app_path)
cmd = ["cargo", "build", "--release"]
subprocess.check_output(cmd)
result = misc.find_application(app_path, device, sdk)
expected = dir_path / app_path / "target" / device / "release" / appname
self.assertEqual(result, expected)
Expand Down

0 comments on commit 770ea43

Please sign in to comment.