From 3c3e327bcb4d6209ace42cbb417db021eddb6cec Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 27 Apr 2026 18:01:44 -0400 Subject: [PATCH] Fixes test cases --- .../amethyst/commons/viewmodels/RoomThemeTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/viewmodels/RoomThemeTest.kt b/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/viewmodels/RoomThemeTest.kt index 91fb9f3e5..e090191ab 100644 --- a/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/viewmodels/RoomThemeTest.kt +++ b/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/viewmodels/RoomThemeTest.kt @@ -84,7 +84,7 @@ class RoomThemeTest { ), ), ) - assertEquals(0xFFFF0000L, theme.backgroundArgb) + assertNull(theme.backgroundArgb) } @Test @@ -99,7 +99,7 @@ class RoomThemeTest { ), ) assertNull(theme.backgroundArgb) - assertEquals(0xFF101010L, theme.textArgb) + assertNull(theme.textArgb) } @Test