Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ - (void)tearDown {
- (void)testKeyChainNoCorruptionWithUniqueAccount {
// macOS only support one service and one account.
#if TARGET_OS_IOS || TARGET_OS_TV
XCTestExpectation *noCurruptionExpectation =
XCTestExpectation *noCorruptionExpectation =
[self expectationWithDescription:@"No corruption between different accounts."];
// Create a keychain with a service and a unique account
NSString *service = [NSString stringWithFormat:@"%@:%@", kAuthorizedEntity, kScope];
Expand Down Expand Up @@ -134,7 +134,7 @@ - (void)testKeyChainNoCorruptionWithUniqueAccount {
account:@"*"
handler:^(NSError *_Nonnull error) {
XCTAssertNil(error);
[noCurruptionExpectation fulfill];
[noCorruptionExpectation fulfill];
}];
}];
}];
Expand All @@ -144,7 +144,7 @@ - (void)testKeyChainNoCorruptionWithUniqueAccount {

- (void)testKeyChainNoCorruptionWithUniqueService {
#if TARGET_OS_IOS || TARGET_OS_TV
XCTestExpectation *noCurruptionExpectation =
XCTestExpectation *noCorruptionExpectation =
[self expectationWithDescription:@"No corruption between different services."];
// Create a keychain with a service and a unique account
NSString *service1 = [NSString stringWithFormat:@"%@:%@", kAuthorizedEntity, kScope];
Expand Down Expand Up @@ -209,7 +209,7 @@ - (void)testKeyChainNoCorruptionWithUniqueService {
account:@"*"
handler:^(NSError *_Nonnull error) {
XCTAssertNil(error);
[noCurruptionExpectation fulfill];
[noCorruptionExpectation fulfill];
}];
}];
}];
Expand Down
Loading