Skip to content

Commit

Permalink
Fix a typo in a warning message in TestFixturesPlugin (#37631)
Browse files Browse the repository at this point in the history
  • Loading branch information
olcbean authored and alpar-t committed Jan 22, 2019
1 parent 992bfd2 commit c284798
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void apply(Project 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)
Expand Down

0 comments on commit c284798

Please sign in to comment.