Fixed a usage of `utils.AuthOptions()`.
diff --git a/acceptance/openstack/compute/v2/servers_test.go b/acceptance/openstack/compute/v2/servers_test.go
index 2c47a86..67b1b46 100644
--- a/acceptance/openstack/compute/v2/servers_test.go
+++ b/acceptance/openstack/compute/v2/servers_test.go
@@ -12,7 +12,6 @@
"github.com/rackspace/gophercloud/openstack"
"github.com/rackspace/gophercloud/openstack/compute/v2/servers"
"github.com/rackspace/gophercloud/openstack/networking/v2/networks"
- "github.com/rackspace/gophercloud/openstack/utils"
"github.com/rackspace/gophercloud/pagination"
)
@@ -47,7 +46,7 @@
}
func networkingClient() (*gophercloud.ServiceClient, error) {
- opts, err := utils.AuthOptions()
+ opts, err := openstack.AuthOptionsFromEnv()
if err != nil {
return nil, err
}