Make WordPress Core


Ignore:
Timestamp:
10/26/2016 01:23:24 AM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Continue eliminating randomness in tests.

See #37371

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/post/thumbnails.php

    r38433 r38938  
    282282            'ID'            => self::$post->ID,
    283283            'post_status'   => 'publish',
    284             'post_content'  => rand_str(),
    285             'post_title'    => rand_str(),
     284            'post_content'  => 'Post content',
     285            'post_title'    => 'Post Title',
    286286            '_thumbnail_id' => self::$attachment_id,
    287287        ) );
     
    293293            'ID'            => $post_id,
    294294            'post_status'   => 'publish',
    295             'post_content'  => rand_str(),
    296             'post_title'    => rand_str(),
     295            'post_content'  => 'Post content',
     296            'post_title'    => 'Post Title',
    297297            '_thumbnail_id' => - 1, // -1 removes post thumbnail.
    298298        ) );
     
    310310            'post_type'      => 'attachment',
    311311            'post_status'    => 'inherit',
    312             'post_content'   => rand_str(),
    313             'post_title'     => rand_str(),
     312            'post_content'   => 'Post content',
     313            'post_title'     => 'Post Title',
    314314            'post_mime_type' => 'audio/mpeg',
    315315            'post_parent'    => 0,
     
    325325            'post_type'      => 'attachment',
    326326            'post_status'    => 'inherit',
    327             'post_content'   => rand_str(),
    328             'post_title'     => rand_str(),
     327            'post_content'   => 'Post content',
     328            'post_title'     => 'Post Title',
    329329            'post_mime_type' => 'image/jpeg',
    330330            'post_parent'    => 0,
Note: See TracChangeset for help on using the changeset viewer.