From 94a54f013ae0f509dab4b3f75cd335f77195bd7d Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Fri, 22 Feb 2019 13:16:12 -0500 Subject: [PATCH] Update Connect-ZertoServer.Tests.ps1 --- Tests/Public/Connect-ZertoServer.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Public/Connect-ZertoServer.Tests.ps1 b/Tests/Public/Connect-ZertoServer.Tests.ps1 index 17d1668..30d5784 100644 --- a/Tests/Public/Connect-ZertoServer.Tests.ps1 +++ b/Tests/Public/Connect-ZertoServer.Tests.ps1 @@ -13,13 +13,13 @@ $zertoServer = "192.168.1.100" $zertoPort = "7669" Describe "Connect-ZertoServer" { - it "should exist" { + it "file should exist" { "$filePath\$fileName" | should exist } it "has a function called Connect-ZertoServer" { get-command Connect-ZertoServer | should be $true } - $headers = Connect-ZertoServer -zertoServer $zertoServer -zertoPort $zertoPort -credential $credential + $headers = Connect-ZertoServer -zertoServer $zertoServer -zertoPort $zertoPort -credential $credential -returnHeaders it "returns a Hashtable with 2 keys" { $headers.keys.count | should be 2 }