Skip to content

Commit

Permalink
adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
h0nIg authored and moleske committed Jul 27, 2024
1 parent 0c82fac commit 6381e82
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 6381e82

Please sign in to comment.