We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nil
1 parent 3cd4e9c commit 313f9f6Copy full SHA for 313f9f6
Example/Storage/Tests/Unit/FIRStoragePathTests.m
@@ -109,7 +109,10 @@ - (void)testchildToRoot {
109
110
- (void)testChildByAppendingNilToRoot {
111
FIRStoragePath *path = [[FIRStoragePath alloc] initWithBucket:@"bucket" object:nil];
112
+#pragma clang diagnostic push
113
+#pragma clang diagnostic ignored "-Wnonnull"
114
FIRStoragePath *childPath = [path child:nil];
115
+#pragma clang diagnostic pop
116
XCTAssertEqualObjects([childPath stringValue], @"gs://bucket/");
117
}
118
0 commit comments