File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
FirebaseStorage/Tests/Integration Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -284,6 +284,7 @@ import XCTest
284
284
XCTAssertEqual ( actualMetadata. contentType, expectedContentType)
285
285
XCTAssertEqual ( actualMetadata. md5Hash? . count, 24 )
286
286
for (key, value) in expectedCustomMetadata {
287
+ print ( " key is \( key) , value is \( value) " )
287
288
XCTAssertEqual ( actualMetadata. customMetadata![ key] , value, key)
288
289
}
289
290
}
Original file line number Diff line number Diff line change @@ -418,13 +418,22 @@ class StorageResultTests: StorageIntegrationCommon {
418
418
private func assertMetadata( actualMetadata: StorageMetadata ,
419
419
expectedContentType: String ,
420
420
expectedCustomMetadata: [ String : String ] ) {
421
+ print ( " a " )
421
422
XCTAssertEqual ( actualMetadata. cacheControl, " cache-control " )
423
+ print ( " b " )
422
424
XCTAssertEqual ( actualMetadata. contentDisposition, " content-disposition " )
425
+ print ( " c " )
423
426
XCTAssertEqual ( actualMetadata. contentEncoding, " gzip " )
427
+ print ( " d " )
424
428
XCTAssertEqual ( actualMetadata. contentLanguage, " de " )
429
+ print ( " e " )
425
430
XCTAssertEqual ( actualMetadata. contentType, expectedContentType)
431
+ print ( " f " )
426
432
XCTAssertEqual ( actualMetadata. md5Hash? . count, 24 )
433
+ print ( " g " )
427
434
for (key, value) in expectedCustomMetadata {
435
+ print ( " z " )
436
+ print ( " key is \( key) , value is \( value) " )
428
437
XCTAssertEqual ( actualMetadata. customMetadata![ key] , value, key)
429
438
}
430
439
}
You can’t perform that action at this time.
0 commit comments