Skip to content

Commit

Permalink
Fix src/main/python test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Aug 13, 2023
1 parent dedef76 commit 45f2e42
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def test_base(self):
list(os.walk(src_dir)),
[
(src_dir, ["main"], []),
(f"{src_dir}/main", [], ["AndroidManifest.xml"]),
(join(src_dir, "main"), [], ["AndroidManifest.xml"]),
])

# Main source directory should be created automatically, to invite the user to
Expand All @@ -236,8 +236,8 @@ def test_base(self):
list(os.walk(src_dir)),
[
(src_dir, ["main"], []),
(f"{src_dir}/main", ["python"], ["AndroidManifest.xml"]),
(f"{src_dir}/main/python", [], []),
(join(src_dir, "main"), ["python"], ["AndroidManifest.xml"]),
(join(src_dir, "main", "python"), [], []),
])

def test_kwargs_wrapper(self):
Expand Down

0 comments on commit 45f2e42

Please sign in to comment.