Make WordPress Core


Ignore:
Timestamp:
03/22/2020 02:29:03 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Build/Test Tools: Remove unused ::assertPostHasTerms() method from tests/term.php.

The associated test was removed in [30241].

Merges [47341] to 3.7+ branches.
See #49485.

Location:
branches/3.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.7

  • branches/3.7/tests/phpunit/tests/term.php

    r47343 r47489  
    388388    }
    389389
    390     private function assertPostHasTerms( $post_id, $expected_term_ids, $taxonomy ) {
    391         $assigned_term_ids = wp_get_object_terms( $post_id, $taxonomy, array(
    392             'fields' => 'ids'
    393         ) );
    394 
    395         $this->assertEquals( $expected_term_ids, $assigned_term_ids );
    396     }
    397 
    398390    function test_wp_set_post_categories() {
    399391        $post_id = $this->factory->post->create();
Note: See TracChangeset for help on using the changeset viewer.