From cd7b986dc91f010e216fb02bd558085b60c2432d Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 1 Jul 2022 11:21:11 +0200 Subject: [PATCH] wip --- src/Store/New-CredentialStore.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Store/New-CredentialStore.Tests.ps1 b/src/Store/New-CredentialStore.Tests.ps1 index 8473eaf..f660240 100644 --- a/src/Store/New-CredentialStore.Tests.ps1 +++ b/src/Store/New-CredentialStore.Tests.ps1 @@ -36,7 +36,7 @@ Describe "New-CredentialStore" { Context "Private CS tests" { It "Test1: Create new private CredentialStore" { $pCS = Get-DefaultCredentialStorePath - { New-CredentialStore -Confirm:$false } | Should -Not -Throw + { New-CredentialStore -Confirm:$false -Force } | Should -Not -Throw $result = Test-Path -Path $pCS $CS = Get-Content -Path $pCS -Raw | ConvertFrom-Json ($result -eq $true) -and ($CS.Type -eq "Private") | Should -Be $true