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

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