Make WordPress Core


Ignore:
Timestamp:
09/06/2022 10:03:10 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Tests: Correctly use the factory method.

This replaces all non-static calls to the WP_UnitTestCase_Base::factory() method with static function calls, since the method is declared as static.

This is a consistency improvement for the test suite.

Follow up to [35225], [35242], [49603], [54087].

Props jrf.
See #55652.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/wpRestBlockPatternsController.php

    r54058 r54088  
    163163    public function test_get_items_forbidden() {
    164164        // Set current user without `edit_posts` capability.
    165         wp_set_current_user( $this->factory()->user->create( array( 'role' => 'subscriber' ) ) );
     165        wp_set_current_user( self::factory()->user->create( array( 'role' => 'subscriber' ) ) );
    166166
    167167        $request  = new WP_REST_Request( 'GET', static::REQUEST_ROUTE );
Note: See TracChangeset for help on using the changeset viewer.