Make WordPress Core


Ignore:
Timestamp:
11/09/2020 03:43:14 PM (6 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-attachments-controller.php

    r49302 r49547  
    10291029
    10301030                $this->assertNotWPError( $response->as_error() );
    1031                 $this->assertEquals( 'inherit', $response->get_data()['status'] );
     1031                $this->assertSame( 'inherit', $response->get_data()['status'] );
    10321032        }
    10331033
Note: See TracChangeset for help on using the changeset viewer.