- Timestamp:
- 10/16/2015 09:04:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/wpDeleteObjectTermRelationships.php
r31021 r35225 10 10 register_taxonomy( 'wptests_tax2', 'post' ); 11 11 12 $t1 = $this->factory->term->create( array( 'taxonomy' => 'wptests_tax1' ) );13 $t2 = $this->factory->term->create( array( 'taxonomy' => 'wptests_tax2' ) );12 $t1 = self::$factory->term->create( array( 'taxonomy' => 'wptests_tax1' ) ); 13 $t2 = self::$factory->term->create( array( 'taxonomy' => 'wptests_tax2' ) ); 14 14 15 15 $object_id = 567; … … 34 34 register_taxonomy( 'wptests_tax3', 'post' ); 35 35 36 $t1 = $this->factory->term->create( array( 'taxonomy' => 'wptests_tax1' ) );37 $t2 = $this->factory->term->create( array( 'taxonomy' => 'wptests_tax2' ) );38 $t3 = $this->factory->term->create( array( 'taxonomy' => 'wptests_tax3' ) );36 $t1 = self::$factory->term->create( array( 'taxonomy' => 'wptests_tax1' ) ); 37 $t2 = self::$factory->term->create( array( 'taxonomy' => 'wptests_tax2' ) ); 38 $t3 = self::$factory->term->create( array( 'taxonomy' => 'wptests_tax3' ) ); 39 39 40 40 $object_id = 567;
Note: See TracChangeset
for help on using the changeset viewer.