Docs: Correct DocBlock formatting for some revision tests.

Follow-up to [50949], [51124].

See #52628.

git-svn-id: https://develop.svn.wordpress.org/trunk@51138 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-06-11 12:34:09 +00:00
parent d4b2fae838
commit 98c9ab835e

View File

@ -577,7 +577,7 @@ class Tests_Post_Revisions extends WP_UnitTestCase {
$this->assertSame( $revision_ids, array_values( wp_list_pluck( $revisions, 'ID' ) ) );
}
/*
/**
* @ticket 51550
*/
public function test_wp_revisions_to_keep_filter() {
@ -602,7 +602,7 @@ class Tests_Post_Revisions extends WP_UnitTestCase {
$this->assertSame( $expected, wp_revisions_to_keep( $post ) );
}
/*
/**
* @ticket 51550
*/
public function test_wp_post_type_revisions_to_keep_filter() {
@ -636,10 +636,8 @@ class Tests_Post_Revisions extends WP_UnitTestCase {
$this->assertSame( $expected, wp_revisions_to_keep( $post ) );
}
/*
* Verify that trying to create a revision with an invalid ID returns a WP_Error.
*
/**
* Verifies that trying to create a revision with an invalid ID returns a WP_Error.
*
* @ticket 30009
*/