@@ -154,7 +154,6 @@ - (void)testMigrateIfNeeded_NoPreviousMigration_DataProtectedMigration {
154154 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
155155 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
156156 callbackPath: kCallbackPath
157- keychainName: kKeychainName
158157 isFreshInstall: NO ];
159158
160159 // verify that the auth session was removed during migration
@@ -179,7 +178,6 @@ - (void)testMigrateIfNeeded_KeychainFailure_DataProtectedMigration {
179178 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
180179 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
181180 callbackPath: kCallbackPath
182- keychainName: kKeychainName
183181 isFreshInstall: NO ];
184182 XCTAssertNil ([_realLegacyGTMKeychainStore retrieveAuthSessionWithError: nil ]);
185183}
@@ -198,7 +196,6 @@ - (void)testMigrateIfNeeded_NoPreviousMigration_GTMAppAuthMigration {
198196 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
199197 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
200198 callbackPath: kCallbackPath
201- keychainName: kKeychainName
202199 isFreshInstall: NO ];
203200}
204201
@@ -215,7 +212,6 @@ - (void)testMigrateIfNeeded_KeychainFailure_GTMAppAuthMigration {
215212 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
216213 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
217214 callbackPath: kCallbackPath
218- keychainName: kKeychainName
219215 isFreshInstall: NO ];
220216}
221217
@@ -258,7 +254,6 @@ - (void)testMigrateIfNeeded_HasPreviousMigration {
258254 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
259255 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
260256 callbackPath: kCallbackPath
261- keychainName: kKeychainName
262257 isFreshInstall: NO ];
263258}
264259
@@ -274,7 +269,6 @@ - (void)testMigrateIfNeeded_isFreshInstall {
274269 [[GIDAuthStateMigration alloc ] initWithKeychainStore: _mockGTMKeychainStore];
275270 [migration migrateIfNeededWithTokenURL: [NSURL URLWithString: kTokenURL ]
276271 callbackPath: kCallbackPath
277- keychainName: kKeychainName
278272 isFreshInstall: YES ];
279273}
280274
0 commit comments