Skip to content

Commit 5e4c5e6

Browse files
committed
test
1 parent 47c17e1 commit 5e4c5e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firestore/Swift/Tests/Integration/AsyncAwaitIntegrationTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ let emptyBundle = """
7171
try await document.setData(["": ""]) // ensure document exists
7272
let value = try await db.runTransaction { transact, error in
7373
transact.setData(["test": "test"], forDocument: document)
74-
return NSNull() // should not crash
74+
return nil // should not crash
7575
}
7676

77-
XCTAssertNil(value, "value should be nil on success")
77+
// XCTAssertNil(value, "value should be nil on success")
7878
}
7979
}
8080
#endif

0 commit comments

Comments
 (0)