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 May 6, 2024
1 parent d9ac365 commit 5063637
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 @@ -745,9 +745,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 5063637

Please sign in to comment.