> + final Predicate<Image> predicate = DockerComputeServiceAdapter
> +
> .createPredicateMatchingRepoTags("docker.io/kwart/alpine-ext:3.3-ssh");
> + assertFalse(predicate.apply(IMAGE_REPO_TAGS_MULTI));
> + assertFalse(predicate.apply(IMAGE_REPO_TAGS_EMPTY));
> + assertTrue(predicate.apply(IMAGE_REPO_TAGS_WITH_HOST));
> + }
> +
> + public void testRepoTagLatestWithHost() {
> + final Predicate<Image> predicate = DockerComputeServiceAdapter
> + .createPredicateMatchingRepoTags("docker.io/kwart/alpine-ext");
> + assertFalse(predicate.apply(IMAGE_REPO_TAGS_MULTI));
> + assertFalse(predicate.apply(IMAGE_REPO_TAGS_EMPTY));
> + assertTrue(predicate.apply(IMAGE_REPO_TAGS_WITH_HOST));
> + }
> +
> +}
Make sure your branch is properly rebased. This class shouldn't be part of the
PR.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/315/files/aec0775e803138e2a965a03a6035af54ad5e098f#r77630377