We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d34d8 commit 7130e57Copy full SHA for 7130e57
src/gardenlinux/features/difference_formatter.py
@@ -327,7 +327,7 @@ def __str__(self) -> str:
327
328
# Sort the problems by affected flavors in descending order and by files names for problems with the same number of affected flavors
329
# to get a derterministic ordering for testing
330
- sorting_function = lambda files: (-len(trees[files][0]), ",".join(files))
+ sorting_function = lambda files: (-len(trees[files][0]), ",".join(sorted(files)))
331
332
for files in sorted(trees, key=sorting_function):
333
flavors, tree = trees[files]
0 commit comments