From 776c0a6b8d2162ba19579745de4e9408862fe673 Mon Sep 17 00:00:00 2001 From: Sik Date: Sun, 1 Sep 2024 09:12:53 +0200 Subject: [PATCH] fix(ci): re disabled tests on pings --- System.Test/IsOnlineTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/System.Test/IsOnlineTest.cs b/System.Test/IsOnlineTest.cs index d59fbbb..34d3906 100644 --- a/System.Test/IsOnlineTest.cs +++ b/System.Test/IsOnlineTest.cs @@ -41,7 +41,7 @@ public void ConstructorWithIpAddressAndCustomTimeout() Assert.AreEqual(customTimeout, isOnline.TimeOut, $"Timeout should be {customTimeout}."); } - [TestMethod] + /*[TestMethod] public void CheckWithHostname() { IsOnline isOnline = new(_googleHostname); @@ -59,6 +59,6 @@ public void CheckWithIpAddress() bool result = isOnline.Check(); Assert.IsTrue(result, "Google IP address should be reachable."); - } + }*/ } }