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
+1 -1
View File
@@ -158,7 +158,7 @@ func TestGetCompleteMultipartMD5(t *testing.T) {
}
for i, test := range testCases {
result, err := getCompleteMultipartMD5(test.parts...)
result, err := getCompleteMultipartMD5(test.parts)
if result != test.expectedResult {
t.Fatalf("test %d failed: expected: result=%v, got=%v", i+1, test.expectedResult, result)
}