Tests: Correct a number of malformed @covers tags.

As per the documentation of the `@covers` tag, global functions being covered should be prefixed with `::`. Also, the `()` after the function name is redundant.

Follow-up to [39918].

Props jrf.
See #50267.

git-svn-id: https://develop.svn.wordpress.org/trunk@48848 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-08-23 17:23:52 +00:00
parent e353e266a0
commit a6bb0120ac
11 changed files with 19 additions and 19 deletions

View File

@@ -13,7 +13,7 @@
*
* @group privacy
* @group user
* @covers wp_send_user_request
* @covers ::wp_send_user_request
*/
class Tests_User_WpSendUserRequest extends WP_UnitTestCase {