Skip to content

Commit

Permalink
revert uncapitalizing letter in err message
Browse files Browse the repository at this point in the history
  • Loading branch information
preslavmihaylov committed Oct 14, 2023
1 parent 9bebefb commit a6a7df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/scenariobuilder/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func (s *TodocheckScenario) Run() error {
if s.expectedOutputText != "" {
output := stdout.String()
if output != s.expectedOutputText {
return fmt.Errorf("expected standard output to be:\n %s\ngot:\n %s", s.expectedOutputText, output)
return fmt.Errorf("Expected standard output to be:\n %s\ngot:\n %s", s.expectedOutputText, output)
}
} else {
fmt.Println("(standard output follows. Standard output is ignored & not validated...)")
Expand Down

0 comments on commit a6a7df7

Please sign in to comment.