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/multisite/site.php

    r49383 r49547  
    503503                        restore_current_blog();
    504504                        $this->assertNotEmpty( $spam_permalink );
    505                         $this->assertEquals( $post_data['post_title'], $post->post_title );
     505                        $this->assertSame( $post_data['post_title'], $post->post_title );
    506506
    507507                        update_blog_status( $spam_blog_id, 'spam', 1 );
Note: See TracChangeset for help on using the changeset viewer.