Changeset 54090 for trunk/tests/phpunit/tests/term/getTermBy.php
- Timestamp:
- 09/06/2022 10:09:49 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/getTermBy.php
r52836 r54090 197 197 global $wpdb; 198 198 199 $term_id = $this->factory->term->create(199 $term_id = self::factory()->term->create( 200 200 array( 201 201 'name' => 'burrito', … … 212 212 */ 213 213 public function test_query_should_contain_limit_clause() { 214 $term_id = $this->factory->term->create(214 $term_id = self::factory()->term->create( 215 215 array( 216 216 'name' => 'burrito', … … 243 243 register_taxonomy( 'wptests_tax', 'post', array( 'hierarchical' => true ) ); 244 244 245 $term_id = $this->factory->term->create(245 $term_id = self::factory()->term->create( 246 246 array( 247 247 'name' => '0', … … 260 260 register_taxonomy( 'wptests_tax', 'post', array( 'hierarchical' => true ) ); 261 261 262 $term_id = $this->factory->term->create(262 $term_id = self::factory()->term->create( 263 263 array( 264 264 'taxonomy' => 'wptests_tax',
Note: See TracChangeset
for help on using the changeset viewer.