Changeset 52389 for trunk/tests/phpunit/tests/xmlrpc/wp/getComment.php
- Timestamp:
- 12/19/2021 01:42:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/xmlrpc/wp/getComment.php
r52010 r52389 19 19 'comment_author_url' => 'http://example.com/', 20 20 'comment_author_email' => 'example@example.com', 21 'comment_content' => rand_str( 100 ),21 'comment_content' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit.', 22 22 ); 23 23 self::$parent_comment_id = wp_insert_comment( self::$parent_comment_data ); … … 29 29 'comment_author_email' => 'example@example.org', 30 30 'comment_parent' => self::$parent_comment_id, 31 'comment_content' => rand_str( 100 ),31 'comment_content' => 'Duis non neque cursus, commodo massa in, bibendum nisl.', 32 32 ); 33 33 self::$child_comment_id = wp_insert_comment( self::$child_comment_data );
Note: See TracChangeset
for help on using the changeset viewer.