From 2574b4ef27c31910ddcaab72fad00a1ea158c833 Mon Sep 17 00:00:00 2001 From: Lukas Pramuk Date: Thu, 26 Feb 2026 10:02:25 +0100 Subject: [PATCH] Fix parametrization order for MCP server test (#20883) (cherry picked from commit cae1f16380c3b423708b5e514befcfb2940433f7) --- tests/foreman/sys/test_mcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/foreman/sys/test_mcp.py b/tests/foreman/sys/test_mcp.py index 05964d807b4..12a1d62fd0c 100644 --- a/tests/foreman/sys/test_mcp.py +++ b/tests/foreman/sys/test_mcp.py @@ -28,7 +28,7 @@ 'module_target_sat_foreman_mcp_stage', 'module_target_sat_foreman_mcp_downstream', ], - ids=['upstream', 'downstream', 'stage'], + ids=['upstream', 'stage', 'downstream'], ) @pytest.mark.skipif( settings.server.network_type == NetworkType.IPV6,