summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-12 12:50:31 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-12 12:50:31 +0100
commit60c822e535cf9ffe1f86affebf2b8e279edd6173 (patch)
tree5114a0fff8d97bc6d6d4b22fa0947230d1e05a52 /setuptools
parent9e2295af2ef4de51d1112d8215e387ae691dc46c (diff)
downloadpython-setuptools-git-60c822e535cf9ffe1f86affebf2b8e279edd6173.tar.gz
Add missing virtual namespace to tests
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/tests/test_editable_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_editable_install.py b/setuptools/tests/test_editable_install.py
index e23431f5..a7dbb9a9 100644
--- a/setuptools/tests/test_editable_install.py
+++ b/setuptools/tests/test_editable_install.py
@@ -538,7 +538,7 @@ def test_pkg_roots(tmp_path):
assert ns == {"f", "f.g"}
ns = set(_find_virtual_namespaces(roots))
- assert ns == {"a.b.c.x", "a.b.c.x.y", "m", "m.n", "m.n.o", "m.n.o.p"}
+ assert ns == {"a.b", "a.b.c.x", "a.b.c.x.y", "m", "m.n", "m.n.o", "m.n.o.p"}
class TestOverallBehaviour: