From ea539f15cfc458dc505e5e912d6eae323febb33e Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov Date: Mon, 13 Jul 2020 12:17:14 +0300 Subject: [PATCH] fixed haskell tests --- images/win/scripts/Tests/Git.Tests.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/win/scripts/Tests/Git.Tests.ps1 b/images/win/scripts/Tests/Git.Tests.ps1 index 88c6f039..8c52db83 100644 --- a/images/win/scripts/Tests/Git.Tests.ps1 +++ b/images/win/scripts/Tests/Git.Tests.ps1 @@ -7,15 +7,15 @@ Describe "Git" { } } - It "Toolname '' is installed" -TestCases $gitTestCases { + It " is installed" -TestCases $gitTestCases { "$toolName --version" | Should -ReturnZeroExitCode } - It "ToolName '' is located in ''" -TestCases $gitTestCases { + It " is located in ''" -TestCases $gitTestCases { (Get-Command -Name $toolName).Source | Should -Match $source } - It "ToolName 'hub' is installed" { + It "hub is installed" { "hub --version" | Should -ReturnZeroExitCode }