Skip to content

Commit ac04fb6

Browse files
authored
Fix a duplicate key in test data (#7327)
This triggers the -Wobjc-dictionary-duplicate-keys warning, causing the compilation to fail when -Werror is used. Introduced in #6871. #no-changelog
1 parent 72ed38a commit ac04fb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firestore/Example/Tests/Integration/API/FIRQueryTests.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ - (void)testQueriesCanUseArrayContainsAnyFilters {
614614
@"f" : @{@"array" : @[ @{@"a" : @42} ]},
615615
@"g" : @{@"array" : @42},
616616
@"h" : @{@"array" : @[ [NSNull null] ]},
617-
@"g" : @{@"array" : @[ @(NAN) ]},
617+
@"i" : @{@"array" : @[ @(NAN) ]},
618618

619619
};
620620
FIRCollectionReference *collection = [self collectionRefWithDocuments:testDocs];

0 commit comments

Comments
 (0)