Skip to content

Commit

Permalink
Fix one more sniff
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Aug 29, 2023
1 parent 7660405 commit 08e7081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Context/Support.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function assert_equals( $expected, $actual ) {
}

protected function assert_not_equals( $expected, $actual ) {
// phpcs:ignore Universal.Operators.StrictComparisons.LooseNotEqual -- Deliberate loose comparison.
// phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual -- Deliberate loose comparison.
if ( $expected == $actual ) {
throw new Exception( 'Actual value: ' . var_export( $actual, true ) );
}
Expand Down

0 comments on commit 08e7081

Please sign in to comment.