XL: erasure Index should have its corresponding distribution order. (#2300)

This commit is contained in:
Harshavardhana
2016-07-27 11:57:08 -07:00
committed by GitHub
parent 77248bd6e8
commit 2f7358a8a6
5 changed files with 22 additions and 10 deletions
+4 -4
View File
@@ -780,7 +780,7 @@ func (s *TestSuiteCommon) TestListBuckets(c *C) {
// parse the list bucket response.
decoder := xml.NewDecoder(response.Body)
err = decoder.Decode(&results)
// validating that the xml-decoding/parsing was successfull.
// validating that the xml-decoding/parsing was successful.
c.Assert(err, IsNil)
}
@@ -1560,7 +1560,7 @@ func (s *TestSuiteCommon) TestGetPartialObjectLarge10MiB(c *C) {
// execute the HTTP request to upload the object.
response, err = client.Do(request)
c.Assert(err, IsNil)
// verify whether upload was successfull.
// verify whether upload was successful.
c.Assert(response.StatusCode, Equals, http.StatusOK)
// HTTP request to download the object.
@@ -1653,7 +1653,7 @@ func (s *TestSuiteCommon) TestGetObjectRangeErrors(c *C) {
// execute the HTTP request to upload the object.
response, err = client.Do(request)
c.Assert(err, IsNil)
// verify whether upload was successfull.
// verify whether upload was successful.
c.Assert(response.StatusCode, Equals, http.StatusOK)
// HTTP request to download the object.
@@ -2140,7 +2140,7 @@ func (s *TestSuiteCommon) TestObjectMultipart(c *C) {
// Execute the complete multipart request.
response, err = client.Do(request)
c.Assert(err, IsNil)
// verify whether complete multipart was successfull.
// verify whether complete multipart was successful.
c.Assert(response.StatusCode, Equals, http.StatusOK)
}