diff --git a/tests/CodeInsight/BackwardsCompatibility/Checker/AbstractCheckerTestCase.php b/tests/CodeInsight/BackwardsCompatibility/Checker/AbstractCheckerTestCase.php index 98926bd..13f6953 100644 --- a/tests/CodeInsight/BackwardsCompatibility/Checker/AbstractCheckerTestCase.php +++ b/tests/CodeInsight/BackwardsCompatibility/Checker/AbstractCheckerTestCase.php @@ -93,7 +93,7 @@ public function testEmptyCheck() */ protected function assertArrayEquals(array $expected, array $actual, $message = '') { - $this->assertEquals($expected, $actual, $message, 0.0, 10, true); + $this->assertEqualsCanonicalizing($expected, $actual, $message); } /**