> +              .numImages(1)
> +              .frequency(Types.ImageFrequency.WEEKLY)
> +              .serverId(currentServer.id())
> +              .build());
> +   }
> +
> +   @Test
> +   public void testList() {
> +      images = imageApi().list();
> +
> +      assertNotNull(images);
> +      assertFalse(images.isEmpty());
> +      Assert.assertTrue(images.size() > 0);
> +   }
> +
> +   @Test(dependsOnMethods = "testList")

There is no need for this test to depend on the other one. Let's try to avoid 
skipping tests when there are unexpected failures.

---
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/299/files/16efc99645240d8683449a3f2f77254ad0e91a1b#r70531659

Reply via email to