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)
 }