File tree 3 files changed +5
-4
lines changed
plugin/src/test/kotlin/org/jlleitschuh/gradle/ktlint
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ class GitHookTasksTest : AbstractPluginTest() {
38
38
)
39
39
40
40
buildAndFail(" :some-module:$INSTALL_GIT_HOOK_CHECK_TASK " ) {
41
- assertThat(output).contains (" Task '$INSTALL_GIT_HOOK_CHECK_TASK ' not found in project" )
41
+ assertThat(output).containsIgnoringCase (" Task '$INSTALL_GIT_HOOK_CHECK_TASK ' not found in project" )
42
42
}
43
43
buildAndFail(" :some-module:$INSTALL_GIT_HOOK_FORMAT_TASK " ) {
44
- assertThat(output).contains (" Task '$INSTALL_GIT_HOOK_FORMAT_TASK ' not found in project" )
44
+ assertThat(output).containsIgnoringCase (" Task '$INSTALL_GIT_HOOK_FORMAT_TASK ' not found in project" )
45
45
}
46
46
}
47
47
}
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ class KtLintSupportedVersionsTest : AbstractPluginTest() {
117
117
" 0.46.1" ,
118
118
" 0.47.1" ,
119
119
" 0.48.0" ,
120
- " 0.48.1"
120
+ " 0.48.1" ,
121
+ " 0.48.2"
121
122
).also {
122
123
// "0.37.0" is failing on Windows machines that is fixed in the next version
123
124
if (! OS .WINDOWS .isCurrentOs) it.add(" 0.37.0" )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import kotlin.streams.asStream
12
12
13
13
object TestVersions {
14
14
const val minSupportedGradleVersion = KtlintBasePlugin .LOWEST_SUPPORTED_GRADLE_VERSION
15
- const val maxSupportedGradleVersion = " 7.1.1 "
15
+ const val maxSupportedGradleVersion = " 7.6 "
16
16
val pluginVersion = File (" VERSION_CURRENT.txt" ).readText().trim()
17
17
const val minSupportedKotlinPluginVersion = " 1.4.32"
18
18
const val maxSupportedKotlinPluginVersion = " 1.5.31"
You can’t perform that action at this time.
0 commit comments