format style

This commit is contained in:
Aleksandr Chebotov
2020-07-13 14:42:40 +03:00
parent 3356fa7bd0
commit 7efaab60f9
2 changed files with 5 additions and 5 deletions

View File

@@ -110,10 +110,10 @@ function ShouldMatchCommandOutput {
if (-not $succeeded) {
if ($Negate) {
$failureMessage = "Expected regular expression '$RegularExpression' for '$ActualValue' command to not match '$output',but it did match."
$failureMessage = "Expected regular expression '$RegularExpression' for '$ActualValue' command to not match '$output', but it did match."
}
else {
$failureMessage = "Expected regular expression '$RegularExpression' for '$ActualValue' command to match '$output',but it did not match."
$failureMessage = "Expected regular expression '$RegularExpression' for '$ActualValue' command to match '$output', but it did not match."
}
}