From 4e7c85f3f7912f811ca1cea9e99216c12b4288ea Mon Sep 17 00:00:00 2001 From: Kieran Jacobsen Date: Sun, 14 Jul 2019 21:14:39 +1000 Subject: [PATCH] fix breaking test --- tests/Connect-TCPClient.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Connect-TCPClient.Tests.ps1 b/tests/Connect-TCPClient.Tests.ps1 index fbb3550..8ba8036 100644 --- a/tests/Connect-TCPClient.Tests.ps1 +++ b/tests/Connect-TCPClient.Tests.ps1 @@ -51,7 +51,7 @@ InModuleScope $script:ModuleName { } It 'creates a TCP client' { - {Connect-TCPClient -Server '127.0.0.1' -Port 514} | should be $null + {Connect-TCPClient -Server '127.0.0.1' -Port 514} | should not be $null } $TCPListener.stop()