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/user/wpDeleteUser.php

    r37954 r38938  
    6161            'post_author' => $user_id,
    6262            'post_status' => 'publish',
    63             'post_content' => rand_str(),
    64             'post_title' => rand_str(),
     63            'post_content' => 'Post content',
     64            'post_title' => 'Post Title',
    6565            'post_type' => 'post',
    6666        );
     
    7777            'post_author' => $user_id,
    7878            'post_status' => 'publish',
    79             'post_content' => rand_str(),
    80             'post_title' => rand_str(),
     79            'post_content' => 'Post content',
     80            'post_title' => 'Post Title',
    8181            'post_type' => 'nav_menu_item',
    8282        );
Note: See TracChangeset for help on using the changeset viewer.