Skip to content

Commit

Permalink
test: tests should be ok with jdk 8
Browse files Browse the repository at this point in the history
  • Loading branch information
clemstoquart committed Jul 19, 2022
1 parent f30b2bc commit 06c983e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ class QualityPluginIT {
}

@Test
fun `Should run checkstyle's task with configured tool version`() {
fun `Should run checkstyle task with configured tool version`() {
val result = runTask("project_with_test", "checkStyleMain", "--info")

expectThat(result.output) {
contains("Running Checkstyle 10.3.1")
contains("Running Checkstyle 9.2.1")
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/project_with_test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ sonarqube {
}

checkstyle {
toolVersion = "10.3.1"
toolVersion = "9.2.1"
configFile = file("${project.rootDir}/config/checkstyle_test.xml")
}

0 comments on commit 06c983e

Please sign in to comment.