Skip to content

Commit

Permalink
Fix reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclerc-cio committed Nov 22, 2024
1 parent 9e6f13c commit 8f4f69a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reporters/systemout_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ func (s *systemout) Report(approved, received string) bool {

fmt.Printf("approval files did not match\napproved: %v\nreceived: %v\n", approvedFull, receivedFull)

printFileContent("Received", received)
printFileContent("Approved", approved)
printFileContent("Received", receivedFull)
printFileContent("Approved", approvedFull)

return true
}
Expand Down

0 comments on commit 8f4f69a

Please sign in to comment.