Changeset 52389 for trunk/tests/phpunit/tests/term/wpTaxonomy.php
- Timestamp:
- 12/19/2021 01:42:37 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/wpTaxonomy.php
r51404 r52389 19 19 global $wp; 20 20 21 $taxonomy = rand_str();21 $taxonomy = 'taxonomy1'; 22 22 $taxonomy_object = new WP_Taxonomy( $taxonomy, 'post' ); 23 23 … … 32 32 global $wp; 33 33 34 $taxonomy = rand_str();34 $taxonomy = 'taxonomy2'; 35 35 $taxonomy_object = new WP_Taxonomy( 36 36 $taxonomy, … … 59 59 global $wp_rewrite; 60 60 61 $taxonomy = rand_str();61 $taxonomy = 'taxonomy3'; 62 62 $taxonomy_object = new WP_Taxonomy( 63 63 $taxonomy, … … 80 80 81 81 public function test_adds_ajax_callback() { 82 $taxonomy = rand_str();82 $taxonomy = 'taxonomy4'; 83 83 $taxonomy_object = new WP_Taxonomy( 84 84 $taxonomy,
Note: See TracChangeset
for help on using the changeset viewer.