Issue 158: moved AddressToLocation to the compute package

This commit is contained in:
Adrian Cole 2011-09-16 16:24:04 -07:00
parent 22fbcb7be4
commit a8348fcb17
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.jclouds.softlayer.functions; package org.jclouds.softlayer.compute.functions;
import org.jclouds.domain.Location; import org.jclouds.domain.Location;
import org.jclouds.domain.LocationBuilder; import org.jclouds.domain.LocationBuilder;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.jclouds.softlayer.functions; package org.jclouds.softlayer.compute.functions;
import org.jclouds.domain.Location; import org.jclouds.domain.Location;
import org.jclouds.softlayer.domain.Address; import org.jclouds.softlayer.domain.Address;
@ -33,7 +33,7 @@ import static org.testng.AssertJUnit.assertTrue;
* *
* @author Jason King * @author Jason King
*/ */
@Test(sequential = true,groups = "unit") @Test(singleThreaded = true,groups = "unit")
public class AddressToLocationTest { public class AddressToLocationTest {
private AccountToLocation function; private AccountToLocation function;