Make WordPress Core

Changeset 53826


Ignore:
Timestamp:
08/04/2022 02:46:11 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Remove the list of global groups in Memcached implementation used in the test suite.

This list was not up to date, and does not appear to be required, as WP_UnitTestCase_Base::flush_cache() adds the correct list of groups, which is up to date.

Follow-up to [1332/tests], [40343], [40561], [53823], [53824].

See #55652.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/object-cache.php

    r53823 r53826  
    808808         * @var array
    809809         */
    810         public $global_groups = array(
    811                 'users',
    812                 'userlogins',
    813                 'usermeta',
    814                 'site-options',
    815                 'site-lookup',
    816                 'blog-lookup',
    817                 'blog-details',
    818                 'rss',
    819         );
     810        public $global_groups = array();
    820811
    821812        /**
Note: See TracChangeset for help on using the changeset viewer.