>
> @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));
> + }Fixed. System.getProperty(String) is much better. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/355/files#r12063169
