Changeset 48165 for trunk/tests/phpunit/tests/admin/includesListTable.php
- Timestamp:
- 06/25/2020 11:33:23 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesListTable.php
r48151 r48165 304 304 'author' => array( 'comment_author', true ), 305 305 'response' => 'comment_post_ID', 306 'date' => array( 'comment_date', 'dEsC' ), // The ordering support should be case 306 'date' => array( 'comment_date', 'dEsC' ), // The ordering support should be case-insensitive. 307 307 ); 308 308 … … 325 325 $this->assertContains( 'column-response sortable desc', $output, 'Mismatch of CSS classes for the comment post ID column.' ); 326 326 327 $this->assertContains( '?orderby=comment_date&order= asc', $output, 'Mismatch of the default link ordering for comment authorcolumn. Should be asc.' );328 $this->assertContains( 'column-date sortable desc', $output, 'Mismatch of CSS classes for the comment date column.' );327 $this->assertContains( '?orderby=comment_date&order=desc', $output, 'Mismatch of the default link ordering for comment date column. Should be asc.' ); 328 $this->assertContains( 'column-date sortable asc', $output, 'Mismatch of CSS classes for the comment date column.' ); 329 329 } 330 330
Note: See TracChangeset
for help on using the changeset viewer.