Make WordPress Core


Ignore:
Timestamp:
02/06/2020 09:40:05 PM (7 years ago)
Author:
SergeyBiryukov
Message:

Tests: Change a few remaining include_once statements to require_once, for consistency.

See #48082.

File:
1 edited

Legend:

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

    r47122 r47200  
    16621662                $ids = $q->get_results();
    16631663
    1664                 /* must include user that has same string in display_name */
     1664                // Must include user that has the same string in display_name.
    16651665                $this->assertEquals( array( $new_user1 ), $ids );
    16661666        }
     
    16901690                $ids = $q->get_results();
    16911691
    1692                 /* must not include user that has same string in other fields */
     1692                // Must not include user that has the same string in other fields.
    16931693                $this->assertEquals( array(), $ids );
    16941694        }
Note: See TracChangeset for help on using the changeset viewer.