From cff519be8e0f1a423a99266a109fa8611a01d84d Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Mon, 23 May 2022 14:10:33 +0000 Subject: [PATCH] Build/Test Tools: Follow-up to r53432. Removes comments global resets from base test case. Follow-up to [53432]. See #54725,#55643. git-svn-id: https://develop.svn.wordpress.org/branches/6.0@53434 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/includes/abstract-testcase.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/phpunit/includes/abstract-testcase.php b/tests/phpunit/includes/abstract-testcase.php index d50e4e7d52..c0dc30b189 100644 --- a/tests/phpunit/includes/abstract-testcase.php +++ b/tests/phpunit/includes/abstract-testcase.php @@ -174,12 +174,6 @@ abstract class WP_UnitTestCase_Base extends PHPUnit_Adapter_TestCase { $GLOBALS[ $global ] = null; } - // Reset comment globals. - $comment_globals = array( 'comment_alt', 'comment_depth', 'comment_thread_alt' ); - foreach ( $comment_globals as $global ) { - $GLOBALS[ $global ] = null; - } - /* * Reset $wp_sitemap global so that sitemap-related dynamic $wp->public_query_vars * are added when the next test runs.