Fix OSX like cases (#89187)
authorAhmet Ibrahim Aksoy <aaksoy@microsoft.com>
Wed, 19 Jul 2023 18:59:29 +0000 (21:59 +0300)
committerGitHub <noreply@github.com>
Wed, 19 Jul 2023 18:59:29 +0000 (21:59 +0300)
src/libraries/System.Net.Sockets/tests/FunctionalTests/Connect.cs

index 6071188..7fbb92a 100644 (file)
@@ -229,7 +229,7 @@ namespace System.Net.Sockets.Tests
             await ConnectAsync(s, new IPEndPoint(listenAt, ((IPEndPoint)listener.LocalEndPoint).Port));
             Assert.True(s.Connected);
             // According to the OSX man page, it's enough connecting to an invalid address to dissolve the connection. (0 port connection returns error on OSX)
-            await ConnectAsync(s, new IPEndPoint(secondConnection, PlatformDetection.IsOSX ? 1 : 0));
+            await ConnectAsync(s, new IPEndPoint(secondConnection, PlatformDetection.IsOSXLike ? 1 : 0));
             Assert.True(s.Connected);
         }
     }