diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2015-09-06 01:29:39 +0200 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2015-09-06 01:29:39 +0200 |
commit | 79f6ade24049bc745cc6a3a3e08336cde06081bf (patch) | |
tree | 4a8a5a460bd5456cc28ddac94cd8278493179cb5 /OpenKeychain/src/test/java/org | |
parent | d2ce770c1ab541aae20906c8e38056f24968aac4 (diff) | |
download | open-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/java/org')
-rw-r--r-- | OpenKeychain/src/test/java/org/sufficientlysecure/keychain/operations/CertifyOperationTest.java | 2 |
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()); |