Updated KeePassKit Submodule

Minor changes to localization
This commit is contained in:
michael starke
2013-07-22 02:32:36 +02:00
parent 9ced3fce0b
commit 8087085fc0
4 changed files with 6 additions and 6 deletions

View File

@@ -48,7 +48,7 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2521</string> <string>2522</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string> <string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>

Binary file not shown.

View File

@@ -7,7 +7,7 @@
// //
#import "KPKTreeLoadingTest.h" #import "KPKTreeLoadingTest.h"
#import "KPKTreeLoader.h" #import "KPKTreeCryptor.h"
#import "KPKPassword.h" #import "KPKPassword.h"
@implementation KPKTreeLoadingTest @implementation KPKTreeLoadingTest
@@ -25,9 +25,9 @@
} }
- (void)testLoading { - (void)testLoading {
KPKTreeLoader *loader = [[KPKTreeLoader alloc] initWithData:_data password:_password]; KPKTreeCryptor *cryptor = [KPKTreeCryptor treeCryptorWithData:_data password:_password];
KPKTree *tree = [loader loadTree:NULL]; KPKTree *tree = [cryptor decryptTree:NULL];
STAssertNil(tree, @"Loading should broken"); STAssertNotNil(tree, @"Loading should result in a tree object");
} }
@end @end