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/comment/getCommentsPagesCount.php

    r48937 r48940  
    5959        $this->assertSame( 0, get_comment_pages_count( $comments, 5 ) );
    6060        $this->assertSame( 0, get_comment_pages_count( $comments ) );
    61         $this->assertequals( 0, get_comment_pages_count( null, 1 ) );
     61        $this->assertSame( 0, get_comment_pages_count( null, 1 ) );
    6262    }
    6363
Note: See TracChangeset for help on using the changeset viewer.