File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Firestore/Example/Tests/Integration/API Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -189,13 +189,13 @@ - (void)testCanOverwriteDataAnExistingDocumentUsingSet {
189
189
190
190
NSDictionary <NSString *, id > *initialData =
191
191
@{
@" desc" :
@" Description" ,
@" owner" : @{
@" name" :
@" Jonny" ,
@" email" :
@" [email protected] " }};
192
- NSDictionary <NSString *, id > *udpateData = @{@" desc" : @" NewDescription" };
192
+ NSDictionary <NSString *, id > *updateData = @{@" desc" : @" NewDescription" };
193
193
194
194
[self writeDocumentRef: doc data: initialData];
195
- [self writeDocumentRef: doc data: udpateData ];
195
+ [self writeDocumentRef: doc data: updateData ];
196
196
197
197
FIRDocumentSnapshot *document = [self readDocumentForRef: doc];
198
- XCTAssertEqualObjects (document.data , udpateData );
198
+ XCTAssertEqualObjects (document.data , updateData );
199
199
}
200
200
201
201
- (void )testCanMergeDataWithAnExistingDocumentUsingSet {
You can’t perform that action at this time.
0 commit comments