fix scoping issue in test file

This commit is contained in:
OCram85 2018-03-21 11:40:13 +01:00
parent 82da4dc20a
commit 7ab662c860
1 changed files with 17 additions and 16 deletions

View File

@ -79,7 +79,6 @@ Describe "New-CredentialStoreItem" {
return [PSCredential]::new($UserName, $Password)
}
}
It "Test missing Credential" {
$tmpCS = 'C:\CredentialStore.json'
New-CredentialStoreItem -Path $tmpCs -Shared -RemoteHost 'foobar3'
@ -99,3 +98,5 @@ Context "General Exception handling" {
New-CredentialStoreItem -Path 'C:\missingStore.json' -RemoteHost 'notrelevant' | Should -Throw "Could not add anything"
}
}
}