From 151fce70e383f096088fb911aa467b45b5c88142 Mon Sep 17 00:00:00 2001 From: Nikita Bykov Date: Mon, 24 Aug 2020 14:33:46 +0300 Subject: [PATCH] fixed tests --- tests/Go.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Go.Tests.ps1 b/tests/Go.Tests.ps1 index 6f9edf2..a11fd73 100644 --- a/tests/Go.Tests.ps1 +++ b/tests/Go.Tests.ps1 @@ -24,7 +24,7 @@ Describe "Go" { } It "version is correct" { - $versionOutput = Invoke-Expression "go --version" + $versionOutput = Invoke-Expression "go version" $versionOutput | Should -Match $Version }