From 6e53ebed47d7ca015c0c381149ae79bc7f5c0473 Mon Sep 17 00:00:00 2001 From: Asger F Date: Wed, 26 Feb 2025 09:32:32 +0100 Subject: [PATCH] Ensure total ranking order to avoid ambiguous results --- shared/util/codeql/util/test/InlineExpectationsTest.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/util/codeql/util/test/InlineExpectationsTest.qll b/shared/util/codeql/util/test/InlineExpectationsTest.qll index a618756699a..f67f54da937 100644 --- a/shared/util/codeql/util/test/InlineExpectationsTest.qll +++ b/shared/util/codeql/util/test/InlineExpectationsTest.qll @@ -954,7 +954,7 @@ module TestPostProcessing { f0 = MkTestFailure(fl, message) and fl.getLocation().hasLocationInfo(filename, startLine, startColumn, endLine, endColumn) | - f0 order by filename, startLine, startColumn, endLine, endColumn, message + f0 order by filename, startLine, startColumn, endLine, endColumn, message, fl.toString() ) }