Standardising JSON indents
diff --git a/openstack/compute/v2/extensions/secgroups/fixtures.go b/openstack/compute/v2/extensions/secgroups/fixtures.go
index 5347ad7..2cf4ea5 100644
--- a/openstack/compute/v2/extensions/secgroups/fixtures.go
+++ b/openstack/compute/v2/extensions/secgroups/fixtures.go
@@ -13,15 +13,15 @@
const listGroupsJSON = `
{
- "security_groups": [
- {
- "description": "default",
- "id": "b0e0d7dd-2ca4-49a9-ba82-c44a148b66a5",
- "name": "default",
- "rules": [],
- "tenant_id": "openstack"
- }
- ]
+ "security_groups": [
+ {
+ "description": "default",
+ "id": "b0e0d7dd-2ca4-49a9-ba82-c44a148b66a5",
+ "name": "default",
+ "rules": [],
+ "tenant_id": "openstack"
+ }
+ ]
}
`
@@ -89,9 +89,9 @@
th.TestJSONRequest(t, r, `
{
- "security_group": {
- "name": "new_name"
- }
+ "security_group": {
+ "name": "new_name"
+ }
}
`)
@@ -100,13 +100,13 @@
fmt.Fprintf(w, `
{
- "security_group": {
- "description": "something",
- "id": "b0e0d7dd-2ca4-49a9-ba82-c44a148b66a5",
- "name": "new_name",
- "rules": [],
- "tenant_id": "openstack"
- }
+ "security_group": {
+ "description": "something",
+ "id": "b0e0d7dd-2ca4-49a9-ba82-c44a148b66a5",
+ "name": "new_name",
+ "rules": [],
+ "tenant_id": "openstack"
+ }
}
`)
})
@@ -233,9 +233,9 @@
th.TestJSONRequest(t, r, `
{
- "removeSecurityGroup": {
- "name": "test"
- }
+ "removeSecurityGroup": {
+ "name": "test"
+ }
}
`)