Skip to content

Commit a83e90c

Browse files
authored
Review Firestore remaining test files (#13388)
1 parent 28fbe5f commit a83e90c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Firestore/core/test/unit/FSTGoogleTestTests.mm

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ @interface GoogleTests : XCTestCase
104104
}
105105

106106
if (!config) {
107-
NSLog(@"Failed to load any configuaration from %@=%@. %@", configEnvVar,
107+
NSLog(@"Failed to load any configuration from %@=%@. %@", configEnvVar,
108108
filePath, error);
109109
return nil;
110110
}
111111

112112
SEL testsToRunSelector = NSSelectorFromString(@"testsToRun");
113113
if (![config respondsToSelector:testsToRunSelector]) {
114-
NSLog(@"Invalid configuaration from %@=%@: missing testsToRun",
115-
configEnvVar, filePath);
114+
NSLog(@"Invalid configuration from %@=%@: missing testsToRun", configEnvVar,
115+
filePath);
116116
return nil;
117117
}
118118

Firestore/core/test/unit/credentials/firebase_app_check_credentials_provider_test.mm

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ - (nonnull NSString*)tokenDidChangeNotificationName {
236236
}
237237
});
238238

239-
// Sending this notifcation would cause a crash if it was processed in the
239+
// Sending this notification would cause a crash if it was processed in the
240240
// AppCheck notification handlder since AppCheck expects the userInfo object
241241
// to an NSDictionary.
242242
id userInfo = @"this_should_be_a_dictionary";

Firestore/core/test/unit/testutil/async_testing.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Expectation {
7474
void Fulfill();
7575

7676
/**
77-
* Returns a callback function, that when invoked, fullfills the expectation.
77+
* Returns a callback function, that when invoked, fulfills the expectation.
7878
*
7979
* The returned function has a lifetime that's independent of the Expectation
8080
* that created it.

0 commit comments

Comments
 (0)