Skip to content

Commit 9fa8f23

Browse files
vkryachkoVinayGuthal
authored and
VinayGuthal
committed
Fix google-services testing tooling. (#148)
1 parent 83f4c59 commit 9fa8f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/googleServices.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ afterEvaluate {
4545
// ./gradlew test at the root project).
4646
def isTesting = getGradle().getStartParameter().getTaskNames().any({ String taskName ->
4747
def hasProjectTestTask = taskName.contains("$name") && ['AndroidTest', 'connectedCheck'].any({ taskName.contains(it)})
48-
return hasProjectTestTask || taskName == 'connectedCheck'
48+
return hasProjectTestTask || taskName.contains('connectedCheck')
4949
})
5050

5151
if (isTesting) {

0 commit comments

Comments
 (0)