commit | c5679ebe93e96b530ac4e4f9a77b8785ed26145d | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Tue Oct 14 11:22:43 2014 -0500 |
committer | Jon Perritt <jrperritt@gmail.com> | Tue Oct 14 11:22:43 2014 -0500 |
tree | d57193b2e0f6fee9e45f1bb776e0d9842b1baeb7 | |
parent | 2082ce3940cd67f601d95ca862a49d43d7433bf5 [diff] |
flavors listURL unit test
diff --git a/openstack/compute/v2/flavors/urls_test.go b/openstack/compute/v2/flavors/urls_test.go index cc13c4e..069da24 100644 --- a/openstack/compute/v2/flavors/urls_test.go +++ b/openstack/compute/v2/flavors/urls_test.go
@@ -20,5 +20,7 @@ } func TestListURL(t *testing.T) { - + actual := listURL(endpointClient()) + expected := endpoint + "flavors/detail" + th.CheckEquals(t, expected, actual) }