Skip to content

Commit

Permalink
Remove todo
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra committed Jan 30, 2025
1 parent 0dada23 commit b4cbf64
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion parrot/recorder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ func TestResponseWriterRecorder(t *testing.T) {
recordedBody, err := io.ReadAll(recordedResp.Body)
require.NoError(t, err, "error reading recorded response body")

// TODO: Make sure body is actually getting checked
assert.Equal(t, tc.expectedRespCode, actualResp.StatusCode, "actual response has unexpected status code")
assert.Equal(t, tc.expectedRespCode, recordedResp.StatusCode, "recorded response has unexpected status code")
assert.Equal(t, tc.expectedRespBody, string(actualBody), "actual response has unexpected body")
Expand Down

0 comments on commit b4cbf64

Please sign in to comment.