> +import static org.testng.Assert.assertTrue;
> +
> +@Test(groups = "live", testName = "AvailabilityZoneApiLiveTest",
> singleThreaded = true)
> +public class AvailabilityZoneApiLiveTest extends BaseCinderApiLiveTest {
> +
> + private AvailabilityZoneApi availabilityZoneApi;
> +
> + public AvailabilityZoneApiLiveTest() {
> + super();
> + provider = "openstack-cinder";
> + }
> +
> + @BeforeClass(groups = {"integration", "live"})
> + public void setupContext() {
> + super.setup();
> + String zone = Iterables.getFirst(api.getConfiguredZones(),
> "regionOne");
@inbarsto Just noticed: should this be `api.getConfiguredRegions()`? If so,
I'll fix in a quick follow-up commit.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/581/files#r19324015