Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66fbd88c authored by mitulsheth's avatar mitulsheth
Browse files

fix(test): Code review update

parent 61167234
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ import io.mockk.every
import io.mockk.mockk
import org.junit.Assert.assertEquals
import org.junit.Assert.assertNotEquals
import org.junit.Assert.assertTrue
import org.junit.Test
import java.util.Locale

@@ -111,7 +112,7 @@ class PlaceIdGeneratorTest {

        // Verify it only contains hex characters
        val hexRegex = Regex("^[0-9a-fA-F]+$")
        assert(id.matches(hexRegex)) { "ID should be a valid hexadecimal string" }
        assertTrue(id.matches(hexRegex))
    }

    @Test