Changeset 48939 for trunk/tests/phpunit/tests/theme/WPTheme.php
- Timestamp:
- 09/04/2020 07:01:00 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/theme/WPTheme.php
r48937 r48939 166 166 $current_allowed_themes['testtheme-1'] = true; // Add the new theme to the previous set. 167 167 168 $this->assert EqualSetsWithIndex( $current_allowed_themes, $new_allowed_themes );168 $this->assertSameSetsWithIndex( $current_allowed_themes, $new_allowed_themes ); 169 169 } 170 170 … … 189 189 ); 190 190 191 $this->assert EqualSetsWithIndex( $current_allowed_themes, $new_allowed_themes );191 $this->assertSameSetsWithIndex( $current_allowed_themes, $new_allowed_themes ); 192 192 } 193 193 … … 214 214 unset( $allowed_themes[ $disable_theme ] ); // Remove deleted theme from initial set. 215 215 216 $this->assert EqualSetsWithIndex( $allowed_themes, $new_allowed_themes );216 $this->assertSameSetsWithIndex( $allowed_themes, $new_allowed_themes ); 217 217 } 218 218 … … 240 240 unset( $allowed_themes['existing-5'] ); 241 241 242 $this->assert EqualSetsWithIndex( $allowed_themes, $new_allowed_themes );242 $this->assertSameSetsWithIndex( $allowed_themes, $new_allowed_themes ); 243 243 } 244 244 }
Note: See TracChangeset
for help on using the changeset viewer.