Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-02-18 00:59:26 -08:00
parent e61a9bddeb
commit a000f0d72d
2 changed files with 2 additions and 2 deletions

View file

@ -55,6 +55,6 @@ internal class JokeUtilTest {
fun `Validate Authentication Header`() {
val token = "AUTH-TOKEN"
val body = fetchUrl("https://postman-echo.com/get", token)
assertThat(body, "body").contains("\"authentication\":\"$token\"")
assertThat(body, "body").contains("\"authentication\": \"$token\"")
}
}