Skip to content

Commit

Permalink
adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
h0nIg authored and a-b committed Oct 4, 2024
1 parent eb1aa2d commit 0c4d35a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/ui/request_logger_file_writer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ var _ = Describe("Request Logger File Writer", func() {

contents, err := os.ReadFile(logFile1)
Expect(err).ToNot(HaveOccurred())
Expect(string(contents)).To(Equal(RedactedValue + "\n"))
Expect(string(contents)).To(Equal(RedactedValue + "\n\n"))

contents, err = os.ReadFile(logFile2)
Expect(err).ToNot(HaveOccurred())
Expect(string(contents)).To(Equal(RedactedValue + "\n"))
Expect(string(contents)).To(Equal(RedactedValue + "\n\n"))
})
})

Expand Down

0 comments on commit 0c4d35a

Please sign in to comment.