We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7cc506 commit 95cd948Copy full SHA for 95cd948
1 file changed
swift/integration-tests/diagnostics_test_utils.py
@@ -40,6 +40,9 @@ def _load_concatenated_json(text):
40
41
42
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()
46
entries = [json.dumps(e, sort_keys=True, indent=2) for e in data]
47
entries.sort()
48
entries.append("")
0 commit comments