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 Aug 19, 2024
1 parent 4a7da22 commit 79d92ac
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 79d92ac

Please sign in to comment.