Fix a typo in a warning message in TestFixturesPlugin (#37631)

This commit is contained in:
olcbean 2019-01-22 21:36:42 +01:00 committed by Alpar Torok
parent 992bfd2064
commit c28479819e
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class TestFixturesPlugin implements Plugin<Project> {
if (dockerComposeSupported(project) == false) {
project.getLogger().warn(
"Tests for {} require docker-compose at /usr/local/bin/docker-compose or /usr/bin/docker-compose " +
"but none could not be found so these will be skipped", project.getPath()
"but none could be found so these will be skipped", project.getPath()
);
tasks.withType(getTaskClass("com.carrotsearch.gradle.junit4.RandomizedTestingTask"), task ->
task.setEnabled(false)