From 7ff6652440250960da2f32089970714d32534f35 Mon Sep 17 00:00:00 2001 From: David Murphy < dmurphy@saltstack.com> Date: Mon, 11 Dec 2023 17:08:44 -0700 Subject: [PATCH] Update test --- tests/pytests/functional/modules/test_cmdmod.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pytests/functional/modules/test_cmdmod.py b/tests/pytests/functional/modules/test_cmdmod.py index 95dc88d53a0..a97d780a15f 100644 --- a/tests/pytests/functional/modules/test_cmdmod.py +++ b/tests/pytests/functional/modules/test_cmdmod.py @@ -87,7 +87,7 @@ def _ensure_user_exists(name, usermod): @pytest.mark.slow_test -def test_run(cmdmod): +def test_run(cmdmod, grains): """ cmd.run """ @@ -105,7 +105,7 @@ def test_run(cmdmod): template="jinja", python_shell=True, ) - == "func-tests-minion" + == "func-tests-minion-opts" ) assert cmdmod.run("grep f", stdin="one\ntwo\nthree\nfour\nfive\n") == "four\nfive" assert cmdmod.run('echo "a=b" | sed -e s/=/:/g', python_shell=True) == "a:b"