Make WordPress Core


Ignore:
Timestamp:
11/09/2020 03:43:14 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Use assertSame() in some newly introduced tests.

This ensures that not only the return values match the expected results, but also that their type is the same.

Going forward, stricter type checking by using assertSame() should generally be preferred to assertEquals() where appropriate, to make the tests more reliable.

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

See #38266.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/functions.php

    r49382 r49547  
    17641764     */
    17651765    public function test_wp_is_json_media_type( $input, $expected ) {
    1766         $this->assertEquals( $expected, wp_is_json_media_type( $input ) );
     1766        $this->assertSame( $expected, wp_is_json_media_type( $input ) );
    17671767    }
    17681768
Note: See TracChangeset for help on using the changeset viewer.