From: Faidon Liambotis <paravoid@debian.org>
Date: Sun, 9 Feb 2025 10:21:57 +0800
Subject: sorted output

Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1055279#12 
Forwarded: https://github.com/fedora-python/tox-current-env/issues/72#issuecomment-2011331672
Last-Update: 2024-03-21

Last-Update: 2024-03-21
---
 tests/test_integration_tox4.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test_integration_tox4.py b/tests/test_integration_tox4.py
index 4773209..44ed19a 100644
--- a/tests/test_integration_tox4.py
+++ b/tests/test_integration_tox4.py
@@ -272,7 +272,7 @@ def test_allenvs_print_extras_to_file(tmp_path, option):
     for env in envs_from_tox_ini()[:-1]:
         expected += f"{env}: OK\n"
     expected += tox_footer(spaces=0) + "\n"
-    assert prep_tox_output(result.stdout) == expected
+    assert sorted(prep_tox_output(result.stdout)) == sorted(expected)
 
 
 @pytest.mark.parametrize("option", ("--print-dependency-groups-to", "--print-dependency-groups-to-file"))
