Skip to content

Commit

Permalink
Temporarily restore break to dev against
Browse files Browse the repository at this point in the history
  • Loading branch information
CRogers committed Jul 3, 2019
1 parent bcb9f96 commit 7f70265
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
import org.immutables.value.Value.Style;

@Target({ElementType.PACKAGE, ElementType.TYPE})
@Style(depluralize = true, strictBuilder = true)
@Style(depluralize = true, strictBuilder = true, overshadowImplementation = true)
@interface CustomImmutablesStyle {}
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ public Builder waitingForHostNetworkedPort(int port, HealthCheck<DockerPort> hea
public Builder clusterWaits(Iterable<? extends ClusterWait> elements) {
return addAllClusterWaits(elements);
}

@Override
public DockerComposeRule build() {
return super.build();
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public class DockerComposeRuleShould {
private DockerComposeFiles mockFiles = mock(DockerComposeFiles.class);
private DockerMachine machine = mock(DockerMachine.class);
private LogCollector logCollector = mock(LogCollector.class);
private ImmutableDockerComposeRule rule;
private DockerComposeRule rule;

@Before public void
setup() {
Expand Down

0 comments on commit 7f70265

Please sign in to comment.