Skip to content

Commit 95cd948

Browse files
committed
Swift: order help links in integration test checks
They are currently a set within the codeql cli.
1 parent d7cc506 commit 95cd948

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

swift/integration-tests/diagnostics_test_utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ def _load_concatenated_json(text):
4040

4141

4242
def _normalize_json(data):
43+
# at the moment helpLinks are a set within the codeql cli
44+
for e in data:
45+
e.get("helpLinks", []).sort()
4346
entries = [json.dumps(e, sort_keys=True, indent=2) for e in data]
4447
entries.sort()
4548
entries.append("")

0 commit comments

Comments
 (0)