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

The associated test was removed in [30241].

See #49485.

git-svn-id: https://develop.svn.wordpress.org/trunk@47341 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-21 17:03:12 +00:00
parent 8793357dfa
commit 8837ebd1f6

View File

@ -194,18 +194,6 @@ class Tests_Term extends WP_UnitTestCase {
$this->assertEquals( 0, sanitize_term_field( 'parent', '', $term['term_id'], $this->taxonomy, 'raw' ) );
}
private function assertPostHasTerms( $post_id, $expected_term_ids, $taxonomy ) {
$assigned_term_ids = wp_get_object_terms(
$post_id,
$taxonomy,
array(
'fields' => 'ids',
)
);
$this->assertEquals( $expected_term_ids, $assigned_term_ids );
}
/**
* @ticket 19205
*/