Skip to content

Commit e2bfaa6

Browse files
committed
minor: update to sevntu 1.28.0
1 parent e4cce2c commit e2bfaa6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

checkstyle-sonar-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<maven.checkstyle.plugin.version>2.17</maven.checkstyle.plugin.version>
19-
<maven.sevntu.checkstyle.plugin.version>1.27.0</maven.sevntu.checkstyle.plugin.version>
19+
<maven.sevntu.checkstyle.plugin.version>1.28.0</maven.sevntu.checkstyle.plugin.version>
2020
</properties>
2121

2222
<dependencies>

checkstyle-sonar-plugin/src/test/java/org/sonar/plugins/checkstyle/CheckstyleExecutorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public void generateXmlReportInEnglish() throws Exception {
131131
createJavaResourceLocator());
132132
executor.execute();
133133

134-
Assert.assertTrue(report.exists());
134+
Assert.assertTrue("Report should exists", report.exists());
135135

136136
final String reportContents = FileUtils.readFileToString(report);
137137
assertThat(reportContents).contains("<error");
@@ -155,7 +155,7 @@ public void generateXmlReportNull() throws CheckstyleException {
155155
createJavaResourceLocator());
156156
executor.execute();
157157

158-
Assert.assertFalse(report.exists());
158+
Assert.assertFalse("Report should NOT exists", report.exists());
159159
}
160160

161161
@Test

0 commit comments

Comments
 (0)