Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bytestring/common/src/ByteString.kt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class ByteString private constructor(

internal fun wrap(byteArray: ByteArray): ByteString = ByteString(byteArray, null)

private val HEX_DIGITS = "0123456789ABCDEF".toCharArray()
private val HEX_DIGITS = "0123456789abcdef".toCharArray()
}

/**
Expand Down
2 changes: 1 addition & 1 deletion bytestring/common/test/ByteStringTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ class ByteStringTest {
assertEquals("ByteString(size=0)", ByteString().toString())
assertEquals("ByteString(size=1 hex=00)", ByteString(0).toString())
assertEquals(
"ByteString(size=16 hex=000102030405060708090A0B0C0D0E0F)",
"ByteString(size=16 hex=000102030405060708090a0b0c0d0e0f)",
ByteString(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15).toString()
)
assertEquals(
Expand Down