From 90381066156770c35d283f54076ce23f128de61f Mon Sep 17 00:00:00 2001 From: Alan Sarli Date: Tue, 28 May 2024 18:31:07 +1000 Subject: [PATCH] another --- Tool/SystemTestingTools/Internal/RecordingManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Tool/SystemTestingTools/Internal/RecordingManager.cs b/Tool/SystemTestingTools/Internal/RecordingManager.cs index bac7d95..f4d4f16 100644 --- a/Tool/SystemTestingTools/Internal/RecordingManager.cs +++ b/Tool/SystemTestingTools/Internal/RecordingManager.cs @@ -62,6 +62,7 @@ public List GetRecordings(FolderAbsolutePath folder) recording.File = StandardizeFileNameForDisplay(folder, fullFilePath); list.Add(recording); } + list = list.OrderBy(c => c.File).ToList(); // we sort so it's the same order in windows and linux, so we can more easily test it return list; }