From 46335e458710d85581084b3f7a0f77f7c031fd4d Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Wed, 7 Jan 2026 11:39:34 +0100 Subject: [PATCH] Tags: sort to have reliable order Signed-off-by: tobiasKaminsky --- .../android/lib/resources/tags/GetTagsRemoteOperationIT.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/library/src/androidTest/java/com/owncloud/android/lib/resources/tags/GetTagsRemoteOperationIT.kt b/library/src/androidTest/java/com/owncloud/android/lib/resources/tags/GetTagsRemoteOperationIT.kt index bfb883a201..a5d0967d3e 100644 --- a/library/src/androidTest/java/com/owncloud/android/lib/resources/tags/GetTagsRemoteOperationIT.kt +++ b/library/src/androidTest/java/com/owncloud/android/lib/resources/tags/GetTagsRemoteOperationIT.kt @@ -104,6 +104,7 @@ class GetTagsRemoteOperationIT : AbstractIT() { (rootMetadata.data as ArrayList) .find { it.remotePath == tagFolder } ?.tags + tags?.sortBy { it?.color } assertEquals(2, tags?.size) assertEquals(null, tags?.first()?.color) assertEquals(colorWithHex, tags?.last()?.color)