Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Address acceptance test intermittency #1008

Merged
merged 8 commits into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
import tech.pegasys.pantheon.tests.acceptance.dsl.node.PantheonNode;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

@Ignore
public class CliqueGetSignersRpcTest extends AcceptanceTestBase {
private PantheonNode minerNode1;
private PantheonNode minerNode2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ public void shouldStillMineWhenANonProposerNodeFailsAndHasSufficientValidators()
final PantheonNode nonProposerNode = validators.get(validators.size() - 1);
cluster.start(validators);

cluster.waitUntil(wait.chainHeadHasProgressedByAtLeast(validators.get(0), 1));

final Account receiver = accounts.createAccount("account2");

cluster.stopNode(nonProposerNode);
Expand Down