Commit fc0597c7 by Tim Gates Committed by GitHub

docs: Fix a few typos (#6024)

There are small typos in:
- tests/installation/test_pip_installer.py
- tests/utils/test_extras.py

Fixes:
- Should read `namespace` rather than `namepspace`.
- Should read `multiple` rather than `multpile`.

Signed-off-by: Tim Gates <tim.gates@iress.com>
parent e8f259a1
...@@ -173,7 +173,7 @@ def test_uninstall_git_package_nspkg_pth_cleanup( ...@@ -173,7 +173,7 @@ def test_uninstall_git_package_nspkg_pth_cleanup(
# this test scenario requires a real installation using the pip installer # this test scenario requires a real installation using the pip installer
installer = PipInstaller(tmp_venv, NullIO(), pool) installer = PipInstaller(tmp_venv, NullIO(), pool)
# use a namepspace package # use a namespace package
package = Package( package = Package(
"namespace-package-one", "namespace-package-one",
"1.0.0", "1.0.0",
......
...@@ -43,7 +43,7 @@ _PACKAGE_QUIX.add_dependency(Factory.create_dependency("baz", "*")) ...@@ -43,7 +43,7 @@ _PACKAGE_QUIX.add_dependency(Factory.create_dependency("baz", "*"))
["group0"], ["group0"],
["bar", "foo"], ["bar", "foo"],
), ),
# Selecting multpile extras should get us the union of all package names # Selecting multiple extras should get us the union of all package names
( (
[_PACKAGE_FOO, _PACKAGE_SPAM, _PACKAGE_BAR], [_PACKAGE_FOO, _PACKAGE_SPAM, _PACKAGE_BAR],
{"group0": ["bar"], "group1": ["spam"]}, {"group0": ["bar"], "group1": ["spam"]},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment