mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
Properly ignore PeerGroupTest.peerPriority().
This commit is contained in:
parent
c4a49eeb85
commit
9e4d25b2c2
1 changed files with 3 additions and 1 deletions
|
@ -31,6 +31,7 @@ import com.google.common.util.concurrent.ListenableFuture;
|
||||||
import com.google.common.util.concurrent.SettableFuture;
|
import com.google.common.util.concurrent.SettableFuture;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Parameterized;
|
import org.junit.runners.Parameterized;
|
||||||
|
@ -524,7 +525,8 @@ public class PeerGroupTest extends TestWithPeerGroup {
|
||||||
assertTrue(!peerConnectedFuture.isDone() && peerDisconnectedFuture.isDone());
|
assertTrue(!peerConnectedFuture.isDone() && peerDisconnectedFuture.isDone());
|
||||||
}
|
}
|
||||||
|
|
||||||
//@Test - disabled for now as this test is too flaky.
|
@Test
|
||||||
|
@Ignore("disabled for now as this test is too flaky")
|
||||||
public void peerPriority() throws Exception {
|
public void peerPriority() throws Exception {
|
||||||
final List<InetSocketAddress> addresses = Lists.newArrayList(
|
final List<InetSocketAddress> addresses = Lists.newArrayList(
|
||||||
new InetSocketAddress("localhost", 2000),
|
new InetSocketAddress("localhost", 2000),
|
||||||
|
|
Loading…
Add table
Reference in a new issue