From 7f3a9fc5df7087089638e1b3d6ef9565a147ed93 Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Fri, 29 Mar 2019 21:54:01 -0400 Subject: [PATCH] Fix case issues with linux tests --- Tests/ZertoApiWrapper.Tests.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/ZertoApiWrapper.Tests.ps1 b/Tests/ZertoApiWrapper.Tests.ps1 index a71c28e..b2300af 100644 --- a/Tests/ZertoApiWrapper.Tests.ps1 +++ b/Tests/ZertoApiWrapper.Tests.ps1 @@ -32,22 +32,22 @@ Describe "Module: $module" -Tags 'Unit' { It "Has a public functions folder" { - "$modulePath\public" | Should -Exist + "$modulePath\Public" | Should -Exist } It "Has functions in the public functions folder" { - "$modulePath\public\*.ps1" | Should -Exist + "$modulePath\Public\*.ps1" | Should -Exist } It "Has a private functions folder" { - "$modulePath\private" | Should -Exist + "$modulePath\Private" | Should -Exist } It "Has functions in the private functions folder" { - "$modulePath\private\*.ps1" | Should -Exist + "$modulePath\Private\*.ps1" | Should -Exist } }