Skip to content

Commit

Permalink
Fix osarch value in comparisson
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Algarvio <[email protected]>
  • Loading branch information
s0undt3ch committed Jan 22, 2024
1 parent ec7bcdf commit 5098cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pytests/scenarios/swarm/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5098cf9

Please sign in to comment.