diff --git a/tests/phpunit/tests/rest-api/rest-post-meta-fields.php b/tests/phpunit/tests/rest-api/rest-post-meta-fields.php index 786396df2e215..2546076b2ae1d 100644 --- a/tests/phpunit/tests/rest-api/rest-post-meta-fields.php +++ b/tests/phpunit/tests/rest-api/rest-post-meta-fields.php @@ -3621,7 +3621,6 @@ public function error_delete_query( $query ) { return $query; } - /** * Test that single post meta is revisioned when saving to the posts REST API endpoint. * @@ -3659,7 +3658,6 @@ public function test_revisioned_single_post_meta_with_posts_endpoint() { $revisions = wp_get_post_revisions( $post_id, array( 'posts_per_page' => 1 ) ); $revision_id = array_shift( $revisions )->ID; - // @todo Ensure the revisions endpoint returns the correct meta values // Check that the revisions endpoint returns the correct meta value. $request = new WP_REST_Request( 'GET', sprintf( '/wp/v2/posts/%d/revisions/%d', $post_id, $revision_id ) ); $response = rest_get_server()->dispatch( $request );