Skip to content

Commit

Permalink
Fix unit test (os_chdir()is mandatory in that case)
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Jul 30, 2024
1 parent b2a8d83 commit 6d47d93
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 @@ -48,6 +48,7 @@ def test_find_application_ok_rust(self):
tmp_dir.mkdir(parents=True, exist_ok=True)
expected = tmp_dir / appname
expected.touch()
os.chdir(app_path)
result = misc.find_application(app_path, device, sdk)
self.assertEqual(result, expected)

Expand Down

0 comments on commit 6d47d93

Please sign in to comment.