Changeset 51137 for trunk/tests/phpunit/tests/theme/wpThemeJson.php
- Timestamp:
- 06/10/2021 07:18:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/theme/wpThemeJson.php
r51079 r51137 62 62 ); 63 63 64 $this->assert EqualSetsWithIndex( $expected, $actual );64 $this->assertSameSetsWithIndex( $expected, $actual ); 65 65 } 66 66 … … 657 657 $actual = WP_Theme_JSON::get_from_editor_settings( array() ); 658 658 659 $this->assert EqualSetsWithIndex( $expected, $actual );659 $this->assertSameSetsWithIndex( $expected, $actual ); 660 660 } 661 661 … … 674 674 $actual = WP_Theme_JSON::get_from_editor_settings( $input ); 675 675 676 $this->assert EqualSetsWithIndex( $expected, $actual['settings']['spacing'] );676 $this->assertSameSetsWithIndex( $expected, $actual['settings']['spacing'] ); 677 677 } 678 678 … … 691 691 $actual = WP_Theme_JSON::get_from_editor_settings( $input ); 692 692 693 $this->assert EqualSetsWithIndex( $expected, $actual['settings']['spacing'] );693 $this->assertSameSetsWithIndex( $expected, $actual['settings']['spacing'] ); 694 694 } 695 695 … … 708 708 $actual = WP_Theme_JSON::get_from_editor_settings( $input ); 709 709 710 $this->assert EqualSetsWithIndex( $expected, $actual['settings']['spacing'] );710 $this->assertSameSetsWithIndex( $expected, $actual['settings']['spacing'] ); 711 711 } 712 712
Note: See TracChangeset
for help on using the changeset viewer.