Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
bostonrwalker committed Aug 29, 2022
1 parent 74dd7af commit ccab97f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/masonry/builders/test_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ def test_wheel_c_extension(dir: str, has_build_script: bool) -> None:
reason="Disable test on Windows for Python <=3.6 and for PyPy",
)
def test_wheel_c_extension_with_no_setup() -> None:
module_path = fixtures_dir / "ext_no_setup"
module_path = fixtures_dir / "extended_no_setup"
builder = Builder(Factory().create_poetry(module_path))
builder.build(fmt="all")

sdist = fixtures_dir / "ext_no_setup" / "dist" / "extended-0.1.tar.gz"
sdist = fixtures_dir / "extended_no_setup" / "dist" / "extended-0.1.tar.gz"

assert sdist.exists()

Expand Down Expand Up @@ -295,7 +295,7 @@ def test_wheel_c_cpp_extensions_defined_in_pyproject() -> None:
@pytest.mark.parametrize(
"dir",
[
"ext_pyproj_lib_build_py",
"ext_build_py_lib",
"ext_build_py",
],
)
Expand Down

0 comments on commit ccab97f

Please sign in to comment.