Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorifact <xyyjxl@outlook.com>2020-06-14 18:08:22 +0300
committerifact <xyyjxl@outlook.com>2020-06-14 18:08:22 +0300
commitc9f1bd3593f4db1aa19e00de9f894d1d2209a9a1 (patch)
treed01a163771a2597ffb2d519216879b763ec07d3b
parentfb0f03d01118279e4f1bac7b2670d95e540fb0c9 (diff)
Update CategorySortingMethodTest.java
-rw-r--r--app/src/test/java/it/niedermann/owncloud/notes/util/CategorySortingMethodTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/test/java/it/niedermann/owncloud/notes/util/CategorySortingMethodTest.java b/app/src/test/java/it/niedermann/owncloud/notes/util/CategorySortingMethodTest.java
index 28ee6c09..949962d8 100644
--- a/app/src/test/java/it/niedermann/owncloud/notes/util/CategorySortingMethodTest.java
+++ b/app/src/test/java/it/niedermann/owncloud/notes/util/CategorySortingMethodTest.java
@@ -21,7 +21,7 @@ public class CategorySortingMethodTest {
CategorySortingMethod csm0 = CategorySortingMethod.SORT_MODIFIED_DESC;
assertEquals("MODIFIED DESC", csm0.getSorder());
CategorySortingMethod csm1 = CategorySortingMethod.SORT_LEXICOGRAPHICAL_ASC;
- assertEquals("TITLE ASC", csm1.getSorder());
+ assertEquals("TITLE COLLATE NOCASE ASC", csm1.getSorder());
}
@Test