By mondrake on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
9.1.x
Introduced in version:
9.1.0
Issue links:
Description:
UnitTestCase::assertArrayEquals has been deprecated.
In test, use one of PHPUnit's default comparison assertion methods:
assertEqualsmethod is actually doing a per-key comparison in associative arrays;assertSameallows an exact comparison in case the structure matters;assertEqualsCanonicalizingcan be used to pre-sort values before comparison in case of simple arrays.
Impacts:
Module developers