Skip to content

Commit

Permalink
fix review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aganesh-suse committed May 7, 2024
1 parent 6eda2ab commit 6be959a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint/secretsencrypt/encryption_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ var _ = Describe("Test:", func() {

var _ = AfterEach(func() {
if CurrentSpecReport().Failed() {
fmt.Printf("\nFAILED! %s\n", CurrentSpecReport().FullText())
fmt.Printf("\nFAILED! " + CurrentSpecReport().FullText() + "\n")
} else {
fmt.Printf("\nPASSED! %s\n", CurrentSpecReport().FullText())
fmt.Printf("\nPASSED! " + CurrentSpecReport().FullText() + "\n")
}
})

0 comments on commit 6be959a

Please sign in to comment.