Ignoring flaky acceptance test (will be fixed on NC-2010) (#372)

Lucas Saldanha 6 years ago committed by CJ Hare
parent 7891132dd6
commit d828865f11
  1. 5
      acceptance-tests/src/test/java/tech/pegasys/pantheon/tests/web3j/EventEmitterAcceptanceTest.java

@ -28,6 +28,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
import io.reactivex.Flowable;
import io.reactivex.disposables.Disposable;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.web3j.protocol.core.methods.request.EthFilter;
import org.web3j.protocol.core.methods.response.TransactionReceipt;
@ -45,7 +46,11 @@ public class EventEmitterAcceptanceTest extends AcceptanceTestBase {
cluster.start(node);
}
/*
This test will be fixed on NC-2010
*/
@Test
@Ignore
public void shouldDeployContractAndAllowLookupOfValuesAndEmittingEvents() throws Exception {
final EventEmitter eventEmitter =
node.execute(transactions.createSmartContract(EventEmitter.class));

Loading…
Cancel
Save