From f1a381013d012e165cab647cbbd5096f71847705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Mon, 20 May 2024 22:16:53 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Frode Flaten <3436158+fflaten@users.noreply.github.com> --- src/functions/assert/String/Should-BeLikeString.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/functions/assert/String/Should-BeLikeString.ps1 b/src/functions/assert/String/Should-BeLikeString.ps1 index 07333e690..0ae136a08 100644 --- a/src/functions/assert/String/Should-BeLikeString.ps1 +++ b/src/functions/assert/String/Should-BeLikeString.ps1 @@ -35,7 +35,7 @@ function Assert-Like { .EXAMPLE ```powershell - "hello" | Should-BeLikeString"h*" + "hello" | Should-BeLikeString "h*" ``` This assertion will pass, because the actual value is like the expected value. @@ -43,7 +43,7 @@ function Assert-Like { .EXAMPLE ```powershell - "hello" | Should-BeLikeString"H*" -CaseSensitive + "hello" | Should-BeLikeString "H*" -CaseSensitive ``` This assertion will fail, because the actual value is not like the expected value.