Fix missing CompleteMultipartUpload Etag. (#3227)

Fixes #3224
This commit is contained in:
Harshavardhana
2016-11-10 07:41:02 -08:00
committed by GitHub
parent 2f373684f5
commit 51d1e6f75b
8 changed files with 17 additions and 8 deletions

View File

@@ -1507,7 +1507,7 @@ func testAPICompleteMultipartHandler(obj ObjectLayer, instanceType, bucketName s
}
// on successful complete multipart operation the s3MD5 for the parts uploaded will be returned.
s3MD5, err := getCompleteMultipartMD5(inputParts[3].parts...)
s3MD5, err := getCompleteMultipartMD5(inputParts[3].parts)
if err != nil {
t.Fatalf("Obtaining S3MD5 failed")
}