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/rest-api/rest-site-health-controller.php

    r49156 r49547  
    9898        wp_set_current_user( self::$admin );
    9999        $response = rest_do_request( '/wp-site-health/v1/tests/dotorg-communication' );
    100         $this->assertEquals( 'dotorg_communication', $response->get_data()['test'] );
     100        $this->assertSame( 'dotorg_communication', $response->get_data()['test'] );
    101101    }
    102102}
Note: See TracChangeset for help on using the changeset viewer.