From bc90635e667a9dadd5c60da05d59ce166ee44966 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 11 Aug 2025 20:34:44 +0200 Subject: [PATCH] pipx examples and tests: fix terminology (#10649) Fix terminology. --- plugins/modules/pipx.py | 2 +- tests/integration/targets/pipx/tasks/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/pipx.py b/plugins/modules/pipx.py index 778810be0c..924c5301bb 100644 --- a/plugins/modules/pipx.py +++ b/plugins/modules/pipx.py @@ -175,7 +175,7 @@ EXAMPLES = r""" name: tox state: upgrade -- name: Install or upgrade tox with dependency group 'docs' +- name: Install or upgrade tox with extra 'docs' community.general.pipx: name: tox source: tox[docs] diff --git a/tests/integration/targets/pipx/tasks/main.yml b/tests/integration/targets/pipx/tasks/main.yml index 6b83fa7335..73bd764ac3 100644 --- a/tests/integration/targets/pipx/tasks/main.yml +++ b/tests/integration/targets/pipx/tasks/main.yml @@ -217,14 +217,14 @@ name: tox register: uninstall_tox_2 -- name: install tox with dependency group 'docs' +- name: install tox with extra 'docs' community.general.pipx: name: tox source: tox[docs] state: latest register: install_tox_latest_docs -- name: install tox with dependency group 'docs' again +- name: install tox with extra 'docs' again community.general.pipx: name: tox source: tox[docs]