From 10fd058af476e073ecb5435746cd506e590a46ee Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov Date: Fri, 10 Jul 2020 14:38:45 +0300 Subject: [PATCH] fix c=1089 to c=99 --- images/win/scripts/ImageHelpers/TestsHelpers.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 index 5cc69dec2..7a0229ac5 100644 --- a/images/win/scripts/ImageHelpers/TestsHelpers.ps1 +++ b/images/win/scripts/ImageHelpers/TestsHelpers.ps1 @@ -80,8 +80,8 @@ function ShouldReturnZeroExitCode { if (-not $succeeded) { - $сommandOutputIndent = " " * 4 - $commandOutput = ($result.Output | ForEach-Object { "${сommandOutputIndent}${_}" }) -join "`n" + $commandOutputIndent = " " * 4 + $commandOutput = ($result.Output | ForEach-Object { "${commandOutputIndent}${_}" }) -join "`n" $failureMessage = "Command '${ActualValue}' has finished with exit code ${actualExitCode}`n${commandOutput}" }