> vapp.delete();
> - assertNull(view.getCloudService().findVirtualAppliance(
> - VirtualAppliancePredicates.name(PREFIX + "Virtual Appliance
> Updated")));
> +
> + assertNull(find(view.getCloudService().listVirtualAppliances(), new
> Predicate<VirtualAppliance>() {
> + @Override
> + public boolean apply(VirtualAppliance input) {
> + return input.getName().equals(name);
> + }
> + }, null));
> I'll do the change if it is more understandable.
I don't think it's necessary to spend extra time on this if it makes sense to
the people currently working with this...was just a thought ;-)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/10/files#r4962985