Make WordPress Core


Ignore:
Timestamp:
07/07/2021 10:32:56 AM (3 years ago)
Author:
SergeyBiryukov
Message:

Tests: Use more appropriate assertions in various tests.

This replaces instances of assertSame( [number], count( ... ) ) with assertCount() to use native PHPUnit functionality.

Follow-up to [51335], [51337].

See #53363.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-revisions-controller.php

    r50463 r51367  
    329329        $data       = $response->get_data();
    330330        $properties = $data['schema']['properties'];
    331         $this->assertSame( 12, count( $properties ) );
     331        $this->assertCount( 12, $properties );
    332332        $this->assertArrayHasKey( 'author', $properties );
    333333        $this->assertArrayHasKey( 'content', $properties );
Note: See TracChangeset for help on using the changeset viewer.