> + public static String updatedImageName;
> +
> + @BeforeClass
> + public void init() {
> + Random random = new Random();
> + imageName = IMAGE_NAME_PREFIX + random.nextInt();
> + updatedImageName = IMAGE_NAME_PREFIX + random.nextInt();
> + }
> +
> + @AfterTest
> + public void tearDown() {
> + for (String region : api.getConfiguredRegions()) {
> + cleanImagesByRegionAndName(region, imageName, updatedImageName);
> + }
> + }
> +
Thanks for the extra cleanup!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/163/files#r19085145