Skip to content

Commit

Permalink
Fix JVM compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
whyoleg committed May 13, 2024
1 parent 167ed77 commit 3c5ae2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ import kotlin.test.*

class MimeTypeTest : TestWithLeakCheck {

private val asciiChars = '!'..'~'

private fun randomAsciiString(length: Int): String {
return (1..length).joinToString(separator = "") { asciiChars.random().toString() }
}

@Test
fun customMimeTypeSerialization() {
testCustomMimeType("message/x.foo")
Expand Down

This file was deleted.

0 comments on commit 3c5ae2a

Please sign in to comment.