diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2015-09-17 00:54:33 +0200 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2015-09-17 00:54:33 +0200 |
commit | f77a6a85ee70b0f1f1917855731d46551e3efcaf (patch) | |
tree | 050a97ce69646f1948328e472173aff0610d2926 /OpenKeychain/src/test/java/org/sufficientlysecure | |
parent | 1b8cdf5462890ebc10cabaa6955d5d05fea25e8f (diff) | |
download | open-keychain-f77a6a85ee70b0f1f1917855731d46551e3efcaf.tar.gz open-keychain-f77a6a85ee70b0f1f1917855731d46551e3efcaf.tar.bz2 open-keychain-f77a6a85ee70b0f1f1917855731d46551e3efcaf.zip |
mime: don't decrypt in mime parsing only test
Diffstat (limited to 'OpenKeychain/src/test/java/org/sufficientlysecure')
-rw-r--r-- | OpenKeychain/src/test/java/org/sufficientlysecure/keychain/pgp/InputDataOperationTest.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/pgp/InputDataOperationTest.java b/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/pgp/InputDataOperationTest.java index 59b52ea85..38af88a18 100644 --- a/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/pgp/InputDataOperationTest.java +++ b/OpenKeychain/src/test/java/org/sufficientlysecure/keychain/pgp/InputDataOperationTest.java @@ -127,8 +127,7 @@ public class InputDataOperationTest { InputDataOperation op = new InputDataOperation(spyApplication, new ProviderHelper(RuntimeEnvironment.application), null); - PgpDecryptVerifyInputParcel decryptInput = new PgpDecryptVerifyInputParcel(); - InputDataParcel input = new InputDataParcel(fakeInputUri, decryptInput); + InputDataParcel input = new InputDataParcel(fakeInputUri, null); InputDataResult result = op.execute(input, new CryptoInputParcel()); |