Changeset 43571 for trunk/tests/phpunit/tests/term/wpSetObjectTerms.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/term/wpSetObjectTerms.php
r42343 r43571 272 272 // make sure they're correct 273 273 $terms = wp_get_object_terms( 274 $post_id, $this->taxonomy, array( 274 $post_id, 275 $this->taxonomy, 276 array( 275 277 'fields' => 'ids', 276 278 'orderby' => 'term_id', … … 285 287 // make sure they're correct 286 288 $terms = wp_get_object_terms( 287 $post_id, $this->taxonomy, array( 289 $post_id, 290 $this->taxonomy, 291 array( 288 292 'fields' => 'ids', 289 293 'orderby' => 'term_id', … … 311 315 // make sure they're correct 312 316 $terms = wp_get_object_terms( 313 $post_id, $this->taxonomy, array( 317 $post_id, 318 $this->taxonomy, 319 array( 314 320 'fields' => 'names', 315 321 'orderby' => 'term_id', … … 324 330 // make sure they're correct 325 331 $terms = wp_get_object_terms( 326 $post_id, $this->taxonomy, array( 332 $post_id, 333 $this->taxonomy, 334 array( 327 335 'fields' => 'names', 328 336 'orderby' => 'term_id',
Note: See TracChangeset
for help on using the changeset viewer.