Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Jul 29, 2024
1 parent 9fdd153 commit b78697c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions source/Private/Convert-ShouldBeGreaterThan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
Conversion notes:
If the command is negated, the `Should-BeLessThanOrEqual` command is used.
Assume the actual value is 2 and the expected value should not be greater than 2
then we need to use the `Should-BeLessThanOrEqual` command for the logic
to be the same:
Assume the actual value is 2 and the expected value should not be greater
than 2, then we need to use the `Should-BeLessThanOrEqual` command for
the logic to be the same:
Pester 5: 2 | Should -Not -BeGreaterThan 2
Pester 6: 2 | Should-BeLessThanOrEqual 2
#>
Expand Down
8 changes: 4 additions & 4 deletions source/Private/Convert-ShouldBeLessThan.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
Position 2: Actual
Conversion notes:
If the command is negated, the `Should-BeGreaterThanOrEqual` command is used.
Assume the actual value is 2 and the expected value should not be less than 2
then we need to use the `Should-BeLessThanOrEqual` command for the logic
to be the same:
If the command is negated, the `Should-BeGreaterThanOrEqual` command is
used. Assume the actual value is 2 and the expected value should not be
less than 2, then we need to use the `Should-BeLessThanOrEqual` command
for the logic to be the same:
Pester 5: 2 | Should -Not -BeLessThan 2
Pester 6: 2 | Should-BeGreaterThanOrEqual 2
#>
Expand Down

0 comments on commit b78697c

Please sign in to comment.