Make port use test bind to any IP

This commit is contained in:
Jordan Dominion
2023-12-27 08:20:35 -05:00
parent 15014ba108
commit b9b4733b0f
@@ -154,7 +154,7 @@ namespace Tgstation.Server.Tests.Live
{
do
{
var l = new TcpListener(IPAddress.Loopback, 0);
var l = new TcpListener(IPAddress.Any, 0);
l.Start();
try
{