Changeset 46612 for trunk/tests/phpunit/tests/general/paginateLinks.php
- Timestamp:
- 10/29/2019 02:26:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/general/paginateLinks.php
r46586 r46612 26 26 27 27 $links = paginate_links( array( 'total' => 50 ) ); 28 $this->assertEquals ( $expected, $links );28 $this->assertEqualsIgnoreEOL( $expected, $links ); 29 29 } 30 30 … … 49 49 ) 50 50 ); 51 $this->assertEquals ( $expected, $links );51 $this->assertEqualsIgnoreEOL( $expected, $links ); 52 52 } 53 53 … … 74 74 ) 75 75 ); 76 $this->assertEquals ( $expected, $links );76 $this->assertEqualsIgnoreEOL( $expected, $links ); 77 77 } 78 78 … … 101 101 ) 102 102 ); 103 $this->assertEquals ( $expected, $links );103 $this->assertEqualsIgnoreEOL( $expected, $links ); 104 104 } 105 105
Note: See TracChangeset
for help on using the changeset viewer.