diff --git a/tests/unit-tests/api/system-status.php b/tests/unit-tests/api/system-status.php index b277c4260e5..03c5170ef28 100644 --- a/tests/unit-tests/api/system-status.php +++ b/tests/unit-tests/api/system-status.php @@ -81,7 +81,7 @@ class WC_Tests_REST_System_Status extends WC_REST_Unit_Test_Case { $data = $response->get_data(); $environment = (array) $data['environment']; - // Make sure all expected data is present + // Make sure all expected data is present. $this->assertEquals( 32, count( $environment ) ); // Test some responses to make sure they match up. @@ -468,7 +468,7 @@ class WC_Tests_REST_System_Status extends WC_REST_Unit_Test_Case { * * This function is called by WP_HTTP_TestCase::http_request_listner(). * - * @param array $request Request arguments. + * @param array $request Request arguments. * @param string $url URL of the request. * * @return array|false mocked response or false to let WP perform a regular request. diff --git a/tests/unit-tests/api/v2/system-status.php b/tests/unit-tests/api/v2/system-status.php index dfcb16c9df6..6fe65d3e2df 100644 --- a/tests/unit-tests/api/v2/system-status.php +++ b/tests/unit-tests/api/v2/system-status.php @@ -78,7 +78,7 @@ class WC_Tests_REST_System_Status_V2 extends WC_REST_Unit_Test_Case { $data = $response->get_data(); $environment = (array) $data['environment']; - // Make sure all expected data is present + // Make sure all expected data is present. $this->assertEquals( 32, count( $environment ) ); // Test some responses to make sure they match up.