diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-04-17 01:13:56 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-06-15 16:43:57 +0100 |
commit | 2ca60add4b83ee462e11f60cfed80c19662922b1 (patch) | |
tree | 8716ea01fcdc979ea11242944bd5de5c3a9dab67 /setuptools/tests/test_editable_install.py | |
parent | 3c71c872d9e23997d383e2adafe04d4cb1723109 (diff) | |
download | python-setuptools-git-2ca60add4b83ee462e11f60cfed80c19662922b1.tar.gz |
Adequate tests to new internal API
Diffstat (limited to 'setuptools/tests/test_editable_install.py')
-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 71a1072c..6c951c79 100644 --- a/setuptools/tests/test_editable_install.py +++ b/setuptools/tests/test_editable_install.py @@ -376,8 +376,8 @@ class TestFinderTemplate: } jaraco.path.build(files, prefix=tmp_path) mapping = {} - namespaces_ = {"parent"} - template = _finder_template(mapping, namespaces_) + namespaces_ = {"parent": [str(tmp_path / "project1/parent")]} + template = _finder_template(str(uuid4()), mapping, namespaces_) mods = (f"parent.child.{name}" for name in ("one", "two", "three")) with contexts.save_paths(), contexts.save_sys_modules(): |