Skip to content

Commit b6e0180

Browse files
authored
Merge pull request #295 from open-source-contributions/test_enhancement
Make assert equals strict
2 parents 8cfba6a + d14ee5d commit b6e0180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Unit/RuleSet/AbstractRuleSetTestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ final public function testDefaults(): void
4545

4646
self::assertSame($this->name, $ruleSet->name());
4747
self::assertEquals($this->rules, $ruleSet->rules());
48-
self::assertEquals($this->targetPhpVersion, $ruleSet->targetPhpVersion());
48+
self::assertSame($this->targetPhpVersion, $ruleSet->targetPhpVersion());
4949
}
5050

5151
final public function testRuleSetDoesNotConfigureRuleSets(): void

0 commit comments

Comments
 (0)