udpated KeePassKit to fix custom attribute lookup in autotype

This commit is contained in:
michael starke
2017-09-11 16:08:53 +02:00
parent 892f3596b6
commit 571dbe03a5
3 changed files with 3 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
github "sparkle-project/Sparkle" ~> 1.18.1 github "sparkle-project/Sparkle" ~> 1.18.1
github "mstarke/KeePassKit" "5c767b17ac9e993b6558d206bed81d0887b5b562" github "mstarke/KeePassKit" "56cfe1f6084a7817631d5e2306c2edf1ce98e5d4"
github "mstarke/HNHUi" ~> 1.1 github "mstarke/HNHUi" ~> 1.1

View File

@@ -1,3 +1,3 @@
github "mstarke/HNHUi" "1.1.2" github "mstarke/HNHUi" "1.1.2"
github "mstarke/KeePassKit" "5c767b17ac9e993b6558d206bed81d0887b5b562" github "mstarke/KeePassKit" "56cfe1f6084a7817631d5e2306c2edf1ce98e5d4"
github "sparkle-project/Sparkle" "1.18.1" github "sparkle-project/Sparkle" "1.18.1"

View File

@@ -87,7 +87,7 @@
MPAutotypeContext *context = [[MPAutotypeContext alloc] initWithDefaultSequenceForEntry:self.entry]; MPAutotypeContext *context = [[MPAutotypeContext alloc] initWithDefaultSequenceForEntry:self.entry];
NSString *result = [[NSString alloc] initWithFormat:@"%@%@%@%@", self.entry.username, lowerCaseAttribute.value, mixedCaseAttribute.value, upperCaseAttribute.value]; NSString *result = [[NSString alloc] initWithFormat:@"%@%@%@%@", self.entry.username, lowerCaseAttribute.value, mixedCaseAttribute.value, upperCaseAttribute.value];
XCTAssertTrue([[context evaluatedCommand] isEqualToString:result]); XCTAssertEqualObjects(context.evaluatedCommand, result);
} }
- (void)testCustomAttributeRepetition { - (void)testCustomAttributeRepetition {