From 94849898192d271d533e09756007e176feb80697 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 3 Dec 2021 05:57:04 +0000 Subject: [PATCH] Tests: Fix typo in a `WP_Test_REST_Posts_Controller` test method name. Follow-up to [42423]. See #53363. git-svn-id: https://develop.svn.wordpress.org/trunk@52310 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/rest-api/rest-posts-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/rest-api/rest-posts-controller.php b/tests/phpunit/tests/rest-api/rest-posts-controller.php index 2b214d184a..d820e86d74 100644 --- a/tests/phpunit/tests/rest-api/rest-posts-controller.php +++ b/tests/phpunit/tests/rest-api/rest-posts-controller.php @@ -1848,7 +1848,7 @@ class WP_Test_REST_Posts_Controller extends WP_Test_REST_Post_Type_Controller_Te $this->assertSame( rest_url( '/wp/v2/users/' . self::$author_id ), $links['author'][0]['href'] ); } - public function test_get_post_draft_status_not_authenicated() { + public function test_get_post_draft_status_not_authenticated() { $draft_id = $this->factory->post->create( array( 'post_status' => 'draft',