Make WordPress Core


Ignore:
Timestamp:
08/26/2016 08:21:30 PM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Remove many unnecessary calls to rand_str() which can, in theory, fail at random. Static strings are much more appropriate.

See #37371

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/actions.php

    r38251 r38382  
    145145
    146146    function test_did_action() {
    147         $tag1 = rand_str();
    148         $tag2 = rand_str();
     147        $tag1 = 'action1';
     148        $tag2 = 'action2';
    149149
    150150        // do action tag1 but not tag2
Note: See TracChangeset for help on using the changeset viewer.