Skip to content

Commit e227a9d

Browse files
committed
test: fix invalid testbed
1 parent 1398e6b commit e227a9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Libplanet.Net.Tests/TestUtils.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ public static class TestUtils
3939
public static readonly List<BoundPeer> Peers = new List<BoundPeer>()
4040
{
4141
new BoundPeer(PrivateKeys[0].PublicKey, new DnsEndPoint("1.0.0.0", 1000)),
42-
new BoundPeer(PrivateKeys[0].PublicKey, new DnsEndPoint("1.0.0.1", 1001)),
43-
new BoundPeer(PrivateKeys[0].PublicKey, new DnsEndPoint("1.0.0.2", 1002)),
44-
new BoundPeer(PrivateKeys[0].PublicKey, new DnsEndPoint("1.0.0.3", 1003)),
42+
new BoundPeer(PrivateKeys[1].PublicKey, new DnsEndPoint("1.0.0.1", 1001)),
43+
new BoundPeer(PrivateKeys[2].PublicKey, new DnsEndPoint("1.0.0.2", 1002)),
44+
new BoundPeer(PrivateKeys[3].PublicKey, new DnsEndPoint("1.0.0.3", 1003)),
4545
};
4646

4747
public static readonly ValidatorSet ValidatorSet = Libplanet.Tests.TestUtils.ValidatorSet;

0 commit comments

Comments
 (0)