From 5ed7847a80cc7b32211337f45d71d245aa057d59 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Wed, 28 Feb 2018 01:34:47 +0100 Subject: [PATCH] PaymentSessionTest: Ignore test that has a hardcoded expiration date. --- .../org/bitcoinj/protocols/payments/PaymentSessionTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/test/java/org/bitcoinj/protocols/payments/PaymentSessionTest.java b/core/src/test/java/org/bitcoinj/protocols/payments/PaymentSessionTest.java index d6353fe5..51ec0416 100644 --- a/core/src/test/java/org/bitcoinj/protocols/payments/PaymentSessionTest.java +++ b/core/src/test/java/org/bitcoinj/protocols/payments/PaymentSessionTest.java @@ -25,6 +25,7 @@ import com.google.common.util.concurrent.ListenableFuture; import com.google.protobuf.ByteString; import org.bitcoin.protocols.payments.Protos; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import java.io.InputStream; @@ -124,6 +125,7 @@ public class PaymentSessionTest { } @Test + @Ignore("certificate expired") public void testPkiVerification() throws Exception { InputStream in = getClass().getResourceAsStream("pki_test.bitcoinpaymentrequest"); Protos.PaymentRequest paymentRequest = Protos.PaymentRequest.newBuilder().mergeFrom(in).build();