Changeset 38382 for trunk/tests/phpunit/tests/admin/includesScreen.php
- Timestamp:
- 08/26/2016 08:21:30 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesScreen.php
r36089 r38382 187 187 */ 188 188 function test_help_tabs_priority() { 189 $tab_1 = rand_str();189 $tab_1 = 'tab1'; 190 190 $tab_1_args = array( 191 191 'title' => 'Help!', … … 196 196 ); 197 197 198 $tab_2 = rand_str();198 $tab_2 = 'tab2'; 199 199 $tab_2_args = array( 200 200 'title' => 'Help!', … … 204 204 'priority' => 2, 205 205 ); 206 $tab_3 = rand_str();206 $tab_3 = 'tab3'; 207 207 $tab_3_args = array( 208 208 'title' => 'help!', … … 212 212 'priority' => 40, 213 213 ); 214 $tab_4 = rand_str();214 $tab_4 = 'tab4'; 215 215 $tab_4_args = array( 216 216 'title' => 'help!',
Note: See TracChangeset
for help on using the changeset viewer.