Ask for free port in server address test

This commit is contained in:
themode 2022-03-07 10:02:09 +01:00
parent 2e73f00331
commit 5579392b05
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
package net.minestom.server.network.socket;
import net.minestom.server.network.PacketProcessor;
import net.minestom.server.utils.NetworkUtils;
import org.junit.jupiter.api.Test;
import java.io.IOException;
@ -14,7 +15,7 @@ public class ServerAddressTest {
@Test
public void inetAddressTest() throws IOException {
InetSocketAddress address = new InetSocketAddress("localhost", 25565);
InetSocketAddress address = new InetSocketAddress("localhost", NetworkUtils.getFreePort());
var server = new Server(new PacketProcessor());
server.init(address);
assertSame(address, server.socketAddress());