aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/test
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-09-06 01:29:39 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-09-06 01:29:39 +0200
commit79f6ade24049bc745cc6a3a3e08336cde06081bf (patch)
tree4a8a5a460bd5456cc28ddac94cd8278493179cb5 /OpenKeychain/src/test
parentd2ce770c1ab541aae20906c8e38056f24968aac4 (diff)
downloadopen-keychain-79f6ade24049bc745cc6a3a3e08336cde06081bf.tar.gz
open-keychain-79f6ade24049bc745cc6a3a3e08336cde06081bf.tar.bz2
open-keychain-79f6ade24049bc745cc6a3a3e08336cde06081bf.zip
fix unit test for linked ids
Diffstat (limited to 'OpenKeychain/src/test')
-rw-r--r--OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java b/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java
index 3e6b74765..72477c14a 100644
--- a/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java
+++ b/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java
@@ -158,7 +158,7 @@ public class CertifyOperationTest {
CertifyActionsParcel actions = new CertifyActionsParcel(mStaticRing1.getMasterKeyId());
actions.add(new CertifyAction(mStaticRing2.getMasterKeyId(),
- mStaticRing2.getPublicKey().getUnorderedUserIds()));
+ mStaticRing2.getPublicKey().getUnorderedUserIds(), null));
CertifyResult result = op.execute(actions, new CryptoInputParcel(new Date(), mKeyPhrase1));
Assert.assertTrue("certification must succeed", result.success());