@@ -27,7 +27,7 @@ class SentryAttachmentTests: XCTestCase {
2727
2828 XCTAssertEqual ( fixture. data, attachment. data)
2929 XCTAssertEqual ( fixture. filename, attachment. filename)
30- XCTAssertEqual ( fixture . defaultContentType , attachment. contentType)
30+ XCTAssertNil ( attachment. contentType)
3131 XCTAssertNil ( attachment. path)
3232 }
3333
@@ -45,7 +45,7 @@ class SentryAttachmentTests: XCTestCase {
4545
4646 XCTAssertEqual ( fixture. path, attachment. path)
4747 XCTAssertEqual ( fixture. filename, attachment. filename)
48- XCTAssertEqual ( fixture . defaultContentType , attachment. contentType)
48+ XCTAssertNil ( attachment. contentType)
4949 XCTAssertNil ( attachment. data)
5050 }
5151
@@ -54,7 +54,7 @@ class SentryAttachmentTests: XCTestCase {
5454
5555 XCTAssertEqual ( " " , attachment. path)
5656 XCTAssertEqual ( " " , attachment. filename)
57- XCTAssertEqual ( fixture . defaultContentType , attachment. contentType)
57+ XCTAssertNil ( attachment. contentType)
5858 XCTAssertNil ( attachment. data)
5959 }
6060
@@ -87,7 +87,7 @@ class SentryAttachmentTests: XCTestCase {
8787
8888 XCTAssertEqual ( fixture. path, attachment. path)
8989 XCTAssertEqual ( filename, attachment. filename)
90- XCTAssertEqual ( fixture . defaultContentType , attachment. contentType)
90+ XCTAssertNil ( attachment. contentType)
9191 XCTAssertNil ( attachment. data)
9292 }
9393
0 commit comments