Build/Test Tools: Continue eliminating randomness in tests.

See [38762]
See #37371


git-svn-id: https://develop.svn.wordpress.org/trunk@38763 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2016-10-09 01:29:04 +00:00
parent c91be6f1fe
commit b4f01bb97f
9 changed files with 110 additions and 110 deletions

View File

@@ -154,7 +154,7 @@ class Tests_Admin_includesScreen extends WP_UnitTestCase {
}
function test_help_tabs() {
$tab = rand_str();
$tab = __FUNCTION__;
$tab_args = array(
'id' => $tab,
'title' => 'Help!',
@@ -278,7 +278,7 @@ class Tests_Admin_includesScreen extends WP_UnitTestCase {
* @ticket 25799
*/
function test_options() {
$option = rand_str();
$option = __FUNCTION__;
$option_args = array(
'label' => 'Option',
'default' => 10,