From aecc452362a72c552beebc041e2c199a4b29b69d Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 5 Apr 2019 09:09:08 +0200 Subject: [PATCH] align pester test with #43 logic --- tests/Store/02_New-CredentialStore.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Store/02_New-CredentialStore.Tests.ps1 b/tests/Store/02_New-CredentialStore.Tests.ps1 index 028504d..a02caa6 100644 --- a/tests/Store/02_New-CredentialStore.Tests.ps1 +++ b/tests/Store/02_New-CredentialStore.Tests.ps1 @@ -90,7 +90,7 @@ Describe "New-CredentialStore" { $CS = Get-CredentialStore -Shared $CS.PfxCertificate | Should -Be $null $CS.Thumbprint | Should -Not -Be $null - $res = Test-CSCertificate -Thumbprint $CS.Thumbprint -StoreName My -StoreLocation CurrentUser + $res = Test-CSCertificate -Thumbprint $CS.Thumbprint -StoreName My -StoreLocation LocalMachine #Write-Verbose -Message ('res: {0}' -f $res) -Verbose $res | Should -Be $true }