>
> @BeforeClass(groups = { "integration", "live" })
> @Override
> public void setup() {
> super.setup();
> - zones = api.getConfiguredZones();
> +
> + String key = "test." + provider + ".zone";
> +
> + if (System.getProperties().containsKey(key)) {
> + zones.add(System.getProperty(key));
> + }
> + else {
[minor] formatting: `} else {` on one line?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/355/files#r12029629
