Make WordPress Core


Ignore:
Timestamp:
09/04/2020 07:36:33 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Replace a few more instances of assertEquals() with assertSame().

These were previously missed due to incorrect capitalization.

Follow-up to [48937], [48939].

See #38266.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/admin/includesScreen.php

    r48937 r48940  
    378378
    379379        $screen->add_help_tab( $tab_1_args );
    380         $this->assertequals( $screen->get_help_tab( $tab_1 ), $tab_1_args );
     380        $this->assertSame( $screen->get_help_tab( $tab_1 ), $tab_1_args );
    381381
    382382        $screen->add_help_tab( $tab_2_args );
Note: See TracChangeset for help on using the changeset viewer.