Make WordPress Core


Ignore:
Timestamp:
10/09/2016 01:29:04 AM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Continue eliminating randomness in tests.

See [38762]
See #37371

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/customize/setting.php

    r37982 r38763  
    481481        $type = 'option';
    482482        $name = 'blogname';
    483         $post_value = rand_str();
     483        $post_value = __FUNCTION__;
    484484        $this->manager->set_post_value( $name, $post_value );
    485485        $setting = new WP_Customize_Setting( $this->manager, $name, compact( 'type' ) );
     
    505505        $type = 'option';
    506506        $name = 'blogdescription';
    507         $post_value = rand_str();
     507        $post_value = __FUNCTION__;
    508508        $this->manager->set_post_value( $name, $post_value );
    509509        $setting = new WP_Customize_Setting( $this->manager, $name, compact( 'type' ) );
Note: See TracChangeset for help on using the changeset viewer.