Skip to content

Commit

Permalink
Attempts to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Nov 6, 2024
1 parent 0117192 commit 56fae4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2084,7 +2084,7 @@ class WireMockGroovyDslSpec extends Specification implements WireMockStubVerifie
ResponseEntity<String> entity = call(port)
then:
entity.headers.
find { it.key == "Authorization" && it.value.contains("secret;foo") }
find { it.key == "authorization" && it.value.contains("secret;foo") }
AssertionUtil.assertThatJsonsAreEqual(('''
{
"url" : "/api/v1/xxxx?foo=bar&foo=bar2",
Expand Down Expand Up @@ -2236,7 +2236,7 @@ class WireMockGroovyDslSpec extends Specification implements WireMockStubVerifie
then:
ResponseEntity<String> entity = call(port)
entity.headers.
find { it.key == "Authorization" && it.value.contains("secret;foo") }
find { it.key == "authorization" && it.value.contains("secret;foo") }
and:
AssertionUtil.assertThatJsonsAreEqual(('''
{
Expand Down

0 comments on commit 56fae4f

Please sign in to comment.