rename functions
diff --git a/rackspace/db/v1/instances/delegate_test.go b/rackspace/db/v1/instances/delegate_test.go
index e94ce39..716e0a4 100644
--- a/rackspace/db/v1/instances/delegate_test.go
+++ b/rackspace/db/v1/instances/delegate_test.go
@@ -79,21 +79,21 @@
th.AssertDeepEquals(t, expected, user)
}
-func TestRestartService(t *testing.T) {
+func TestRestart(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
os.HandleRestart(t)
- res := RestartService(fake.ServiceClient(), instanceID)
+ res := Restart(fake.ServiceClient(), instanceID)
th.AssertNoErr(t, res.Err)
}
-func TestResizeInstance(t *testing.T) {
+func TestResize(t *testing.T) {
th.SetupHTTP()
defer th.TeardownHTTP()
os.HandleResize(t)
- res := ResizeInstance(fake.ServiceClient(), instanceID, "2")
+ res := Resize(fake.ServiceClient(), instanceID, "2")
th.AssertNoErr(t, res.Err)
}