format Object struct; change apostrophe to quotation mark in unit test
diff --git a/openstack/objectstorage/v1/objects/results.go b/openstack/objectstorage/v1/objects/results.go
index 14435b9..cab0dfb 100644
--- a/openstack/objectstorage/v1/objects/results.go
+++ b/openstack/objectstorage/v1/objects/results.go
@@ -12,11 +12,11 @@
 
 // Object is a structure that holds information related to a storage object.
 type Object struct {
-	Bytes        int    `json:"bytes"			mapstructure:"bytes"`
-	ContentType  string `json:"content_type"	mapstructure:"content_type"`
-	Hash         string `json:"hash"			mapstructure:"hash"`
-	LastModified string `json:"last_modified"	mapstructure:"last_modified"`
-	Name         string `json:"name"			mapstructure:"name"`
+	Bytes        int    `json:"bytes" mapstructure:"bytes"`
+	ContentType  string `json:"content_type" mapstructure:"content_type"`
+	Hash         string `json:"hash" mapstructure:"hash"`
+	LastModified string `json:"last_modified" mapstructure:"last_modified"`
+	Name         string `json:"name" mapstructure:"name"`
 }
 
 // ListResult is a single page of objects that is returned from a call to the List function.