Changeset 48937 for trunk/tests/phpunit/tests/formatting/LinksAddTarget.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/LinksAddTarget.php
r46586 r48937 75 75 function test_normalize_whitespace( $content, $target, $tags, $exp_str ) { 76 76 if ( true === is_null( $target ) ) { 77 $this->assert Equals( $exp_str, links_add_target( $content ) );77 $this->assertSame( $exp_str, links_add_target( $content ) ); 78 78 } elseif ( true === is_null( $tags ) ) { 79 $this->assert Equals( $exp_str, links_add_target( $content, $target ) );79 $this->assertSame( $exp_str, links_add_target( $content, $target ) ); 80 80 } else { 81 $this->assert Equals( $exp_str, links_add_target( $content, $target, $tags ) );81 $this->assertSame( $exp_str, links_add_target( $content, $target, $tags ) ); 82 82 } 83 83 }
Note: See TracChangeset
for help on using the changeset viewer.