Changeset 48937 for trunk/tests/phpunit/tests/template.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/template.php
r46586 r48937 232 232 233 233 public function test_front_page_template_hierarchy_with_posts_on_front() { 234 $this->assert Equals( 'posts', get_option( 'show_on_front' ) );234 $this->assertSame( 'posts', get_option( 'show_on_front' ) ); 235 235 $this->assertTemplateHierarchy( 236 236 home_url(), … … 462 462 $hierarchy = $this->get_template_hierarchy(); 463 463 464 $this->assert Equals( $expected, $hierarchy, $message );464 $this->assertSame( $expected, $hierarchy, $message ); 465 465 } 466 466
Note: See TracChangeset
for help on using the changeset viewer.