Skip to content

Commit

Permalink
fix duplicate test
Browse files Browse the repository at this point in the history
  • Loading branch information
john5f35 authored and e5l committed Aug 29, 2022
1 parent a7e30fb commit 9bf7d5a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 227 deletions.

This file was deleted.

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 9bf7d5a

Please sign in to comment.