Changeset 32208
- Timestamp:
- 04/20/2015 03:17:24 PM (10 years ago)
- Location:
- trunk/tests/phpunit/tests/term
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/splitSharedTerm.php
r31418 r32208 35 35 $t3 = wp_insert_term( 'Foo', 'wptests_tax_3' ); 36 36 37 // Manually modify because s plitterms shouldn't naturally occur.37 // Manually modify because shared terms shouldn't naturally occur. 38 38 $wpdb->update( $wpdb->term_taxonomy, 39 39 array( 'term_id' => $t1['term_id'] ), … … 120 120 ) ); 121 121 122 // Manually modify because s plitterms shouldn't naturally occur.122 // Manually modify because shared terms shouldn't naturally occur. 123 123 $wpdb->update( $wpdb->term_taxonomy, 124 124 array( 'term_id' => $t1['term_id'] ), … … 147 147 $t2 = wp_insert_term( 'Foo Default', 'wptests_tax_5' ); 148 148 149 // Manually modify because s plitterms shouldn't naturally occur.149 // Manually modify because shared terms shouldn't naturally occur. 150 150 $wpdb->update( $wpdb->term_taxonomy, 151 151 array( 'term_id' => $t1['term_id'] ), … … 174 174 $t2 = wp_insert_term( 'Foo Menu', 'wptests_tax_6' ); 175 175 176 // Manually modify because s plitterms shouldn't naturally occur.176 // Manually modify because shared terms shouldn't naturally occur. 177 177 $wpdb->update( $wpdb->term_taxonomy, 178 178 array( 'term_id' => $t1['term_id'] ), -
trunk/tests/phpunit/tests/term/wpUpdateTerm.php
r32117 r32208 275 275 $t2 = wp_insert_term( 'Foo', 'wptests_tax_2' ); 276 276 277 // Manually modify because s plitterms shouldn't naturally occur.277 // Manually modify because shared terms shouldn't naturally occur. 278 278 $wpdb->update( $wpdb->term_taxonomy, 279 279 array( 'term_id' => $t1['term_id'] ), … … 316 316 $t2 = wp_insert_term( 'Foo', 'wptests_tax_2' ); 317 317 318 // Manually modify because s plitterms shouldn't naturally occur.318 // Manually modify because shared terms shouldn't naturally occur. 319 319 $wpdb->update( $wpdb->term_taxonomy, 320 320 array( 'term_id' => $t1['term_id'] ),
Note: See TracChangeset
for help on using the changeset viewer.