Tests: Remove an irrelevant `tags_input` property assertion from `test_get_page_template_property()`.

This appears to be a copy/paste from the `test_get_tags_input_property()` test above.

See #45121.

git-svn-id: https://develop.svn.wordpress.org/trunk@47311 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-02-19 01:03:37 +00:00
parent 6930542657
commit 2213eb37c4
1 changed files with 0 additions and 1 deletions

View File

@ -149,7 +149,6 @@ class Tests_Post_Objects extends WP_UnitTestCase {
$post = get_post( $post_id );
$this->assertInternalType( 'string', $post->page_template );
$this->assertEmpty( $post->tags_input );
$template = get_post_meta( $post->ID, '_wp_page_template', true );
$this->assertEquals( $template, $post->page_template );
update_post_meta( $post_id, '_wp_page_template', 'foo.php' );