diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-24 12:49:20 +0100 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-24 13:53:03 +0100 |
| commit | a376bf930cabee548f5f1125a8679cf6fecfde4f (patch) | |
| tree | d8419cb23c12001fe257ce2e200a324e93eed417 /setuptools/tests | |
| parent | 5f231b9fc86fa9ae9a0ed81f441b9113f416c5b1 (diff) | |
| download | python-setuptools-git-a376bf930cabee548f5f1125a8679cf6fecfde4f.tar.gz | |
editable_wheel: Improve strategy interface
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_editable_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_editable_install.py b/setuptools/tests/test_editable_install.py index faf614fd..a76ab082 100644 --- a/setuptools/tests/test_editable_install.py +++ b/setuptools/tests/test_editable_install.py @@ -603,8 +603,8 @@ class TestLinkTree: outputs = build_py.get_outputs() output_mapping = build_py.get_output_mapping() - make_tree = _LinkTree(dist, name, aux, build, outputs, output_mapping) - make_tree(wheel) + make_tree = _LinkTree(dist, name, aux, build) + make_tree(wheel, outputs, output_mapping) mod1 = next(aux.glob("**/mod1.py")) expected = tmp_path / "src/mypkg/mod1.py" |
