We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b609d9b commit 7d212ceCopy full SHA for 7d212ce
common/src/test/kotlin/com/cosmotech/api/id/hashids/HashidsCsmIdGeneratorTests.kt
@@ -26,7 +26,7 @@ class HashidsCsmIdGeneratorTests {
26
val hashid = this.hashidsCsmIdGenerator.generate("fake_scope")
27
assertFalse { hashid.isBlank() }
28
assertTrue { hashid.startsWith("F-", ignoreCase = false) }
29
- assertFalse { hashid.substringAfter("T-").isBlank() }
+ assertFalse { hashid.substringAfter("F-", missingDelimiterValue = "").isBlank() }
30
}
31
32
@Test
0 commit comments