Changes from trunk/tests/phpunit/tests/link.php at r29248 to branches/4.0/tests/phpunit/tests/link.php at r30405
- File:
-
- 1 edited
-
branches/4.0/tests/phpunit/tests/link.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.0/tests/phpunit/tests/link.php
r29248 r30405 191 191 192 192 /** 193 * @ticket 22112194 */193 * @ticket 22112 194 */ 195 195 function test_get_adjacent_post_exclude_self_term() { 196 $include = $this->factory->category->create(); 196 // Bump term_taxonomy to mimic shared term offsets. 197 global $wpdb; 198 $wpdb->insert( $wpdb->term_taxonomy, array( 'taxonomy' => 'foo', 'term_id' => 12345, 'description' => '' ) ); 199 200 $include = $this->factory->term->create( array( 201 'taxonomy' => 'category', 202 'name' => 'Include', 203 ) ); 197 204 $exclude = $this->factory->category->create(); 198 205
Note: See TracChangeset
for help on using the changeset viewer.