Skip to content

Commit

Permalink
Fix linter errors from unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Habel <andreas.habel@mail.schwarz>
  • Loading branch information
andreas-habel committed Apr 22, 2024
1 parent 88cf43c commit dad67a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/httpclient/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -749,9 +749,9 @@ extract_headers:

xHeader, exists := resBatch[0].MetaGet("x-demo")
require.True(exists)
assert.Equal(xHeader, "Hello")
assert.Equal("Hello", xHeader)

resCookie, exists := resBatch[0].MetaGet("Cookie")
require.True(exists)
assert.Equal(resCookie, "a=b; x=y; foo=bar")
assert.Equal("a=b; x=y; foo=bar", resCookie)
}

0 comments on commit dad67a1

Please sign in to comment.