From 4a54ac6beef625c1c5a4ba374edf40f74d484bf7 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 1 May 2026 16:16:14 -0400 Subject: [PATCH] minimizes chance of failing tests --- .../nip01Core/cache/projection/EventStoreProjectionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/src/commonTest/kotlin/com/vitorpamplona/quartz/nip01Core/cache/projection/EventStoreProjectionTest.kt b/quartz/src/commonTest/kotlin/com/vitorpamplona/quartz/nip01Core/cache/projection/EventStoreProjectionTest.kt index 992b43620..126cac4d8 100644 --- a/quartz/src/commonTest/kotlin/com/vitorpamplona/quartz/nip01Core/cache/projection/EventStoreProjectionTest.kt +++ b/quartz/src/commonTest/kotlin/com/vitorpamplona/quartz/nip01Core/cache/projection/EventStoreProjectionTest.kt @@ -400,8 +400,8 @@ class EventStoreProjectionTest { runBlocking { val time = TimeUtils.now() val safe = signer.sign(TextNoteEvent.build("safe", createdAt = time) { expiration(time + 100) }) - val short = signer.sign(TextNoteEvent.build("short", createdAt = time) { expiration(time + 1) }) observable.insert(safe) + val short = signer.sign(TextNoteEvent.build("short", createdAt = time) { expiration(time + 1) }) observable.insert(short) val projection =