From 1b9880cd368dd29b2443cc7e29371e165cf1202e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 7 Aug 2024 08:48:20 +0200 Subject: [PATCH] Fix acceptances tests --- app/shared_config_manager/templates/source.html.mako | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/shared_config_manager/templates/source.html.mako b/app/shared_config_manager/templates/source.html.mako index 2a6f9296..319ce1d2 100644 --- a/app/shared_config_manager/templates/source.html.mako +++ b/app/shared_config_manager/templates/source.html.mako @@ -100,8 +100,8 @@ ${key_format(key) | h}: ${', '.join(value) | h}
%elif isinstance(value, dict): ${key_format(key) | h}:
- %for k, v in value.items(): -     ${k | h} = ${v | h}
+ %for k in sorted(value.keys()): +     ${k | h} = ${value[k] | h}
%endfor %else: ${key_format(key) | h}: ${value | h}