- Timestamp:
- 05/10/2022 09:28:18 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/blocks/renderCommentTemplate.php
r53353 r53388 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', … … 422 422 add_filter( 'wp_get_current_commenter', $commenter_filter ); 423 423 424 $this->assertEquals( 425 build_comment_query_vars_from_block( $block ), 424 $this->assertSameSetsWithIndex( 426 425 array( 427 426 'orderby' => 'comment_date_gmt', … … 434 433 'number' => 5, 435 434 'paged' => 1, 436 ) 435 ), 436 build_comment_query_vars_from_block( $block ) 437 437 ); 438 438 }
Note: See TracChangeset
for help on using the changeset viewer.