Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/functions/assert/Equivalence/Should-BeEquivalent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ function Should-BeEquivalent {
This example generates an equivalency option object that excludes the 'Id' and 'Timestamp' properties from the comparison and uses a simple equality comparison strategy.

.EXAMPLE
```powereshell
```powershell
Should-BeEquivalent ... -ExcludePathsNotOnExpected
```

Expand Down
2 changes: 1 addition & 1 deletion src/functions/assert/String/Should-BeEmptyString.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
This test will fail, the input is not an empty string.

.EXAMPLE
```
```powershell
$null | Should-BeEmptyString
@() | Should-BeEmptyString
$() | Should-BeEmptyString
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
This test will fail, the input is a whitespace only string.

.EXAMPLE
```
```powershell
$null | Should-NotBeWhiteSpaceString
"" | Should-NotBeWhiteSpaceString
$() | Should-NotBeWhiteSpaceString
Expand Down
Loading