From a3f0fd09ab0538cd15bfe573c122cfc7335011f5 Mon Sep 17 00:00:00 2001 From: Zachary Folwick Date: Mon, 21 Sep 2015 10:12:38 -0700 Subject: [PATCH] implemented changes from code review --- src/pester-tests/Test-Select-String.Tests.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pester-tests/Test-Select-String.Tests.ps1 b/src/pester-tests/Test-Select-String.Tests.ps1 index 74a700e53..54a21ac72 100644 --- a/src/pester-tests/Test-Select-String.Tests.ps1 +++ b/src/pester-tests/Test-Select-String.Tests.ps1 @@ -3,7 +3,7 @@ $testinputone = "hello","Hello","goodbye" $testinputtwo = "hello","Hello" - it "Should be called with out errors" { + it "Should be called without errors" { { $testinputone | Select-String -Pattern "hello" } | Should Not Throw } @@ -12,7 +12,6 @@ } it "Should return an array data type when multiple matches are found" { - # array is case insensitive ( $testinputtwo | Select-String -Pattern "hello").gettype().basetype | Should Be Array }