Changeset 53389
- Timestamp:
- 05/10/2022 09:40:16 PM (3 years ago)
- Location:
- branches/6.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.0
-
branches/6.0/tests/phpunit/tests/blocks/renderCommentTemplate.php
r53336 r53389 67 67 ); 68 68 69 $this->assert Equals(69 $this->assertSameSetsWithIndex( 70 70 array( 71 71 'orderby' => 'comment_date_gmt', … … 124 124 $block = new WP_Block( $parsed_blocks[0] ); 125 125 126 $this->assert Equals(126 $this->assertSameSetsWithIndex( 127 127 array( 128 128 'orderby' => 'comment_date_gmt', … … 390 390 add_filter( 'wp_get_current_commenter', $commenter_filter ); 391 391 392 $this->assertEquals( 393 build_comment_query_vars_from_block( $block ), 392 $this->assertSameSetsWithIndex( 394 393 array( 395 394 'orderby' => 'comment_date_gmt', … … 402 401 'number' => 5, 403 402 'paged' => 1, 404 ) 403 ), 404 build_comment_query_vars_from_block( $block ) 405 405 ); 406 406 }
Note: See TracChangeset
for help on using the changeset viewer.