[Keychain-commit] SF.net SVN: keychain: [442] trunk/Frameworks/Keychain/Testers/ KeychainTester.m
Status: Abandoned
Brought to you by:
wadetregaskis
|
From: <wad...@us...> - 2007-12-09 22:11:03
|
Revision: 442
http://keychain.svn.sourceforge.net/keychain/?rev=442&view=rev
Author: wadetregaskis
Date: 2007-12-09 14:11:06 -0800 (Sun, 09 Dec 2007)
Log Message:
-----------
* Tweaked invalid password test... decided for the moment not to have -[KeychainItem data] return nil for invalid passwords.
Modified Paths:
--------------
trunk/Frameworks/Keychain/Testers/KeychainTester.m
Modified: trunk/Frameworks/Keychain/Testers/KeychainTester.m
===================================================================
--- trunk/Frameworks/Keychain/Testers/KeychainTester.m 2007-12-09 22:02:58 UTC (rev 441)
+++ trunk/Frameworks/Keychain/Testers/KeychainTester.m 2007-12-09 22:11:06 UTC (rev 442)
@@ -207,7 +207,7 @@
TEST(nil != currentItem, "Can create SSH keychain item without password");
if (nil != currentItem) {
- TEST_ISNIL([currentItem dataAsString], "\tPassword is (correctly) not available");
+ TEST_ISEQUAL([currentItem dataAsString], @"", "\tPassword is correct");
TEST_ISEQUAL([currentItem account], @"root", "\tAccount is correct");
TEST_ISEQUAL([currentItem securityDomain], @"", "\tSecurity domain is correct (none)");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|