Skip to content

Commit

Permalink
PHPUnit 9 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aik099 committed Jul 8, 2024
1 parent 0e4e82c commit 124e2fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 124e2fb

Please sign in to comment.