From f077c1e104de20d5091d1a4984cf1039a74fccf7 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:24:16 +0200 Subject: [PATCH] [PR #10649/bc90635e backport][stable-11] pipx examples and tests: fix terminology (#10651) pipx examples and tests: fix terminology (#10649) Fix terminology. (cherry picked from commit bc90635e667a9dadd5c60da05d59ce166ee44966) Co-authored-by: Felix Fontein --- 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]