diff --git a/tests/phpunit/tests/comment/query.php b/tests/phpunit/tests/comment/query.php index a8b856d5d8..012284eca6 100644 --- a/tests/phpunit/tests/comment/query.php +++ b/tests/phpunit/tests/comment/query.php @@ -4907,7 +4907,7 @@ class Tests_Comment_Query extends WP_UnitTestCase { // We manually inserted a non-existing site and overrode the results with it. $this->assertSame( array( 555 ), $results ); - // Make sure manually setting total_users doesn't get overwritten. + // Make sure manually setting found_comments doesn't get overwritten. $this->assertSame( 1, $q->found_comments ); } diff --git a/tests/phpunit/tests/multisite/networkQuery.php b/tests/phpunit/tests/multisite/networkQuery.php index 54248d81e2..a7a13a34c3 100644 --- a/tests/phpunit/tests/multisite/networkQuery.php +++ b/tests/phpunit/tests/multisite/networkQuery.php @@ -545,7 +545,7 @@ if ( is_multisite() ) : // We manually inserted a non-existing site and overrode the results with it. $this->assertSame( array( 555 ), $results ); - // Make sure manually setting total_users doesn't get overwritten. + // Make sure manually setting found_networks doesn't get overwritten. $this->assertSame( 1, $q->found_networks ); } diff --git a/tests/phpunit/tests/multisite/siteQuery.php b/tests/phpunit/tests/multisite/siteQuery.php index 6f8f48f4a8..df579bb438 100644 --- a/tests/phpunit/tests/multisite/siteQuery.php +++ b/tests/phpunit/tests/multisite/siteQuery.php @@ -932,7 +932,7 @@ if ( is_multisite() ) : // We manually inserted a non-existing site and overrode the results with it. $this->assertSame( array( 555 ), $results ); - // Make sure manually setting total_users doesn't get overwritten. + // Make sure manually setting found_sites doesn't get overwritten. $this->assertSame( 1, $q->found_sites ); }