Skip to content

Commit

Permalink
Merge pull request #50 from kishikawakatsumi/fix
Browse files Browse the repository at this point in the history
Fix test case
  • Loading branch information
kishikawakatsumi committed Jan 12, 2015
2 parents 39ab3d3 + ad7c89c commit 503ab29
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/UICKeyChainStoreTests/UICKeyChainStoreTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -1067,6 +1067,9 @@ - (void)testProtocolTypeAndAuthenticationTypePrivateMethod
keychain = [UICKeyChainStore keyChainStoreWithServer:URL protocolType:UICKeyChainStoreProtocolTypeHTTPProxy];
XCTAssertEqualObjects([keychain protocolTypeObject], (__bridge id)kSecAttrProtocolHTTPProxy);

keychain = [UICKeyChainStore keyChainStoreWithServer:URL protocolType:UICKeyChainStoreProtocolTypeHTTPSProxy];
XCTAssertEqualObjects([keychain protocolTypeObject], (__bridge id)kSecAttrProtocolHTTPSProxy);

keychain = [UICKeyChainStore keyChainStoreWithServer:URL protocolType:UICKeyChainStoreProtocolTypeFTPProxy];
XCTAssertEqualObjects([keychain protocolTypeObject], (__bridge id)kSecAttrProtocolFTPProxy);

Expand Down

0 comments on commit 503ab29

Please sign in to comment.