Skip to content

Commit

Permalink
Agree verb with subject
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo authored and slachiewicz committed Sep 24, 2021
1 parent 4d7ef90 commit 28870c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public void logSummary( Log logger, boolean ignoreFailures )

logBuildJobList( logger, ignoreFailures, "The following builds failed:", failedJobs );
logBuildJobList( logger, ignoreFailures, "The following builds finished with error:", errorJobs );
logBuildJobList( logger, true, "The following builds was skipped:", skippedJobs );
logBuildJobList( logger, true, "The following builds were skipped:", skippedJobs );
}

public void logFailedBuildLog( Log logger, boolean ignoreFailures )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void skipSummary()

session.logSummary( logger, false );

verify( logger ).warn( "The following builds was skipped:" );
verify( logger ).warn( "The following builds were skipped:" );
verify( logger ).warn( "* minvoker-279" );
verify( logger, never() ).error( anyString() );
}
Expand Down

0 comments on commit 28870c3

Please sign in to comment.