Squish: Fix expected sort order

Change-Id: I882ad3633f7cf827aea086b5f5fd2a9204eeb482
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2016-05-25 10:20:56 +02:00
parent 3b820cc9a4
commit 1f1a9e5870
+1 -1
View File
@@ -689,7 +689,7 @@ def copyFilesToDir(files, targetDir):
return result
def __sortFilenamesOSDependent__(filenames):
if platform.system() in ('Windows', 'Microsoft'):
if platform.system() in ('Windows', 'Microsoft', 'Darwin'):
filenames.sort(key=str.lower)
else:
filenames.sort()