Changeset 48937 for trunk/tests/phpunit/tests/sitemaps/sitemaps-posts.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/sitemaps/sitemaps-posts.php
r48476 r48937 25 25 ); 26 26 27 $this->assert Equals( $expected, $post_list );27 $this->assertSame( $expected, $post_list ); 28 28 } 29 29 … … 38 38 $subtypes = $posts_provider->get_object_subtypes(); 39 39 40 $this->assert Equals( array(), $subtypes, 'Could not filter posts subtypes.' );40 $this->assertSame( array(), $subtypes, 'Could not filter posts subtypes.' ); 41 41 } 42 42 … … 52 52 $url_list = $posts_provider->get_url_list( 1, 'page' ); 53 53 54 $this->assert Equals( array(), $url_list );54 $this->assertSame( array(), $url_list ); 55 55 56 56 update_option( 'show_on_front', 'posts' );
Note: See TracChangeset
for help on using the changeset viewer.