Skip to content

Commit

Permalink
fix duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
john5f35 committed Apr 9, 2022
1 parent c044b94 commit 4cfea74
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -192,7 +192,7 @@ class CookiesTest : ClientLoader() {
test { client ->
client.prepareGet("$TEST_HOST/encoded").execute { httpResponse ->
val response = httpResponse.bodyAsText()
val cookieStrings = response.split(";").filter { it.isNotBlank() }
val cookieStrings = response.split("; ").filter { it.isNotBlank() }
assertEquals(4, cookieStrings.size)
assertEquals("uri=first%2C+cookie", cookieStrings[0])
assertEquals("raw=first%2C+cookie", cookieStrings[1])
Expand Down

0 comments on commit 4cfea74

Please sign in to comment.