Skip to content

Commit

Permalink
double negatives are hard
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler committed Jul 6, 2023
1 parent 0145f7b commit c065866
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/phpunit/test-shouldcommit.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public function testShouldCommit($const_value, $expected): void
public function shouldCommitTestValues(): array
{
return [
"const is nil"=>[null,true],
"const is true"=>[false,true],
"const is false"=>[true, false],
"const is nil"=>[null, false],
"const is true"=>[true, false],
"const is false"=>[false, true],
];
}
}

0 comments on commit c065866

Please sign in to comment.