trevorflanagan commented on this pull request.
> +
+@Test(groups = "live", testName = "ServerImageApiLiveTest", singleThreaded =
true)
+public class ServerImageApiLiveTest extends
BaseDimensionDataCloudControlApiLiveTest {
+
+ @Test
+ public void testListOsImages() {
+ FluentIterable<OsImage> osImages = api().listOsImages().concat();
+ assertNotNull(osImages);
+ for (OsImage osImage : osImages) {
+ assertNotNull(osImage);
+ }
+ }
+
+ @Test
+ public void testGetOsImage() {
+ // TODO need to add a valid id for this query
I have removed the TODO.
--
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/380#discussion_r110363932