Changeset 45424 for trunk/tests/phpunit/tests/comment/getCommentLink.php
- Timestamp:
- 05/26/2019 12:11:37 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/getCommentLink.php
r42343 r45424 16 16 'comment_post_ID' => self::$p, 17 17 'comment_content' => '1', 18 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 100 ),18 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 100 ), 19 19 ) 20 20 ); … … 23 23 'comment_post_ID' => self::$p, 24 24 'comment_content' => '2', 25 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 200 ),25 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 200 ), 26 26 ) 27 27 ); … … 30 30 'comment_post_ID' => self::$p, 31 31 'comment_content' => '3', 32 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 300 ),32 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 300 ), 33 33 ) 34 34 ); … … 37 37 'comment_post_ID' => self::$p, 38 38 'comment_content' => '4', 39 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 400 ),39 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 400 ), 40 40 ) 41 41 ); … … 44 44 'comment_post_ID' => self::$p, 45 45 'comment_content' => '4', 46 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 500 ),46 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 500 ), 47 47 ) 48 48 ); … … 51 51 'comment_post_ID' => self::$p, 52 52 'comment_content' => '4', 53 'comment_date_gmt' => date( 'Y-m-d H:i:s', $now - 600 ),53 'comment_date_gmt' => gmdate( 'Y-m-d H:i:s', $now - 600 ), 54 54 ) 55 55 );
Note: See TracChangeset
for help on using the changeset viewer.