fix: fix StringSorter case sensitive test

This commit is contained in:
Grecko 2017-09-22 13:42:00 +02:00
parent d19e22fd54
commit 4dc2eb1d7a
1 changed files with 1 additions and 2 deletions

View File

@ -23,9 +23,8 @@ Item {
numericMode: false
},
StringSorter {
//fails because of QTBUG-57034 and QTBUG-58621
property string tag: "caseSensitive"
property var expectedValues: ["A", "Z", "a", "b", "c", "z"]
property var expectedValues: ["a", "A", "b", "c", "z", "Z"]
roleName: "caseRole"
caseSensitivity: Qt.CaseSensitive
},