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.
1 parent 8a61e77 commit fa514c4Copy full SHA for fa514c4
Functions/Example/Tests/FIRFunctionsTests.m
@@ -197,8 +197,11 @@ - (void)testCallFunctionWhenAppCheckIsInstalledAndFACTokenError {
197
198
XCTestExpectation *httpRequestExpectation =
199
[self expectationWithDescription:@"HTTPRequestExpectation"];
200
+ __weak __auto_type weakSelf = self;
201
_fetcherService.testBlock = ^(GTMSessionFetcher *_Nonnull fetcherToTest,
202
GTMSessionFetcherTestResponse _Nonnull testResponse) {
203
+ // __unused to avoid warning in Xcode 12+ in g3.
204
+ __unused __auto_type self = weakSelf;
205
[httpRequestExpectation fulfill];
206
207
NSString *appCheckTokenHeader =
0 commit comments