Make WordPress Core


Ignore:
Timestamp:
10/17/2015 07:24:20 PM (10 years ago)
Author:
wonderboymusic
Message:

Unit Tests: WP_UnitTest_Generator_Sequence needs a static incrementer - otherwise, it assumes every test class is a reset, which it no longer is (it is now static).

While we're at it, remove unnecessary tearDown() code.

See #30017, #33968.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/user/query.php

    r35242 r35244  
    933933    public function test_get_single_role_by_string_which_is_similar() {
    934934        $another_editor = self::factory()->user->create( array(
     935            'user_email' => 'another_editor@another_editor.com',
     936            'user_login' => 'another_editor',
    935937            'role' => 'another-editor',
    936938        ) );
Note: See TracChangeset for help on using the changeset viewer.