Skip to content

Commit ac60b47

Browse files
authored
build: Fix improper condition disabling UI tests (#5298)
buildscript checked for 'test' instead of 'check'
1 parent 7363959 commit ac60b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-tests-starter/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tasks.test {
5353

5454
// hack to disable ui tests in ./gradlew check
5555
val action = Action<TaskExecutionGraph> {
56-
if (hasTask(tasks.test.get())) {
56+
if (hasTask(tasks.check.get())) {
5757
tasks.test.get().enabled = false
5858
}
5959
}

0 commit comments

Comments
 (0)