Changeset 48937 for trunk/tests/phpunit/tests/comment/getCommentExcerpt.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/comment/getCommentExcerpt.php
r46586 r48937 23 23 $excerpt = get_comment_excerpt( $comment_id ); 24 24 25 $this->assert Equals( 20, count( explode( ' ', $excerpt ) ) );25 $this->assertSame( 20, count( explode( ' ', $excerpt ) ) ); 26 26 } 27 27 … … 37 37 $excerpt = get_comment_excerpt( $comment_id ); 38 38 39 $this->assert Equals( 10, count( explode( ' ', $excerpt ) ) );39 $this->assertSame( 10, count( explode( ' ', $excerpt ) ) ); 40 40 } 41 41
Note: See TracChangeset
for help on using the changeset viewer.