We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f961f1d commit a45d053Copy full SHA for a45d053
src/test/java/org/jenkinsci/plugins/github_branch_source/GithubAppCredentialsTest.java
@@ -577,7 +577,7 @@ private List<String> getOutputLines() {
577
// sort the logs into chronological order
578
// then just format the message.
579
return result.stream()
580
- .sorted(Comparator.comparingLong(lr -> lr.getMillis()))
+ .sorted(Comparator.comparingLong(LogRecord::getMillis))
581
.map(formatter::formatMessage)
582
.collect(Collectors.toList());
583
}
0 commit comments