From 2213eb37c4e469bdcf9a959c95db34b1eeca91f8 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 19 Feb 2020 01:03:37 +0000 Subject: [PATCH] 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 --- tests/phpunit/tests/post/objects.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/phpunit/tests/post/objects.php b/tests/phpunit/tests/post/objects.php index a793b1c919..5451f73b54 100644 --- a/tests/phpunit/tests/post/objects.php +++ b/tests/phpunit/tests/post/objects.php @@ -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' );