From a8d0533ba1c0f738fa1255d53726efc051abebb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Nag=C3=B3rski?= Date: Fri, 14 Apr 2023 06:25:23 +0200 Subject: [PATCH] Show the value in CI/CD --- src/Renci.SshNet.Tests/Classes/Common/CountdownEventTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Renci.SshNet.Tests/Classes/Common/CountdownEventTest.cs b/src/Renci.SshNet.Tests/Classes/Common/CountdownEventTest.cs index bb552fd37..7dceffc7e 100644 --- a/src/Renci.SshNet.Tests/Classes/Common/CountdownEventTest.cs +++ b/src/Renci.SshNet.Tests/Classes/Common/CountdownEventTest.cs @@ -200,6 +200,8 @@ public void Wait_ShouldReturnFalseWhenTimeoutExpiresBeforeCountdownEventIsSet() Assert.IsFalse(actual); Assert.IsFalse(countdownEvent.IsSet); Assert.IsFalse(countdownEvent.WaitHandle.WaitOne(0)); + + Assert.AreEqual(watch.Elapsed, timeout); Assert.IsTrue(watch.Elapsed >= timeout); countdownEvent.Wait(Session.InfiniteTimeSpan);