@@ -71,7 +71,7 @@ - (void)tearDown {
7171- (void )testKeyChainNoCorruptionWithUniqueAccount {
7272// macOS only support one service and one account.
7373#if TARGET_OS_IOS || TARGET_OS_TV
74- XCTestExpectation *noCurruptionExpectation =
74+ XCTestExpectation *noCorruptionExpectation =
7575 [self expectationWithDescription: @" No corruption between different accounts." ];
7676 // Create a keychain with a service and a unique account
7777 NSString *service = [NSString stringWithFormat: @" %@ :%@ " , kAuthorizedEntity , kScope ];
@@ -134,7 +134,7 @@ - (void)testKeyChainNoCorruptionWithUniqueAccount {
134134 account: @" *"
135135 handler: ^(NSError *_Nonnull error) {
136136 XCTAssertNil (error);
137- [noCurruptionExpectation fulfill ];
137+ [noCorruptionExpectation fulfill ];
138138 }];
139139 }];
140140 }];
@@ -144,7 +144,7 @@ - (void)testKeyChainNoCorruptionWithUniqueAccount {
144144
145145- (void )testKeyChainNoCorruptionWithUniqueService {
146146#if TARGET_OS_IOS || TARGET_OS_TV
147- XCTestExpectation *noCurruptionExpectation =
147+ XCTestExpectation *noCorruptionExpectation =
148148 [self expectationWithDescription: @" No corruption between different services." ];
149149 // Create a keychain with a service and a unique account
150150 NSString *service1 = [NSString stringWithFormat: @" %@ :%@ " , kAuthorizedEntity , kScope ];
@@ -209,7 +209,7 @@ - (void)testKeyChainNoCorruptionWithUniqueService {
209209 account: @" *"
210210 handler: ^(NSError *_Nonnull error) {
211211 XCTAssertNil (error);
212- [noCurruptionExpectation fulfill ];
212+ [noCorruptionExpectation fulfill ];
213213 }];
214214 }];
215215 }];
0 commit comments