- Timestamp:
- 10/07/2022 01:02:07 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/getCommentsPagesCount.php
r53863 r54402 175 175 $wp_query->max_num_comment_pages = 7; 176 176 177 $this->assert Equals( 7, get_comment_pages_count() );178 $this->assert Equals( 7, get_comment_pages_count( null, null, null ) );179 $this->assert Equals( 0, get_comment_pages_count( array(), null, null ) );177 $this->assertSame( 7, get_comment_pages_count() ); 178 $this->assertSame( 7, get_comment_pages_count( null, null, null ) ); 179 $this->assertSame( 0, get_comment_pages_count( array(), null, null ) ); 180 180 181 181 $wp_query->max_num_comment_pages = $org_max_num_comment_pages;
Note: See TracChangeset
for help on using the changeset viewer.