From 5098cf97103e8ade3ef682e5f9d6e260fc137b17 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Mon, 22 Jan 2024 17:32:39 +0000 Subject: [PATCH] Fix `osarch` value in comparisson Signed-off-by: Pedro Algarvio --- tests/pytests/scenarios/swarm/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/scenarios/swarm/conftest.py b/tests/pytests/scenarios/swarm/conftest.py index c69ee10c674e..f1d9154e9e1c 100644 --- a/tests/pytests/scenarios/swarm/conftest.py +++ b/tests/pytests/scenarios/swarm/conftest.py @@ -46,7 +46,7 @@ def _minion_count(grains): return int(env_count) # Default to 15 swarm minions count = 15 - if grains["osarch"] != "osarch": + if grains["osarch"] != "aarch64": return count if grains["os"] != "Amazon": return count