Changeset 46612 for trunk/tests/phpunit/tests/post/template.php
- Timestamp:
- 10/29/2019 02:26:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/template.php
r46586 r46612 165 165 166 166 $output = wp_dropdown_pages( array( 'echo' => 0 ) ); 167 $this->assertEquals ( $lineage, $output );167 $this->assertEqualsIgnoreEOL( $lineage, $output ); 168 168 169 169 $depth = <<<DEPTH … … 180 180 ) 181 181 ); 182 $this->assertEquals ( $depth, $output );182 $this->assertEqualsIgnoreEOL( $depth, $output ); 183 183 184 184 $option_none = <<<NONE … … 198 198 ) 199 199 ); 200 $this->assertEquals ( $option_none, $output );200 $this->assertEqualsIgnoreEOL( $option_none, $output ); 201 201 202 202 $option_no_change = <<<NO … … 208 208 209 209 NO; 210 $output = wp_dropdown_pages( 210 211 $output = wp_dropdown_pages( 211 212 array( 212 213 'echo' => 0, … … 217 218 ) 218 219 ); 219 $this->assertEquals ( $option_no_change, $output );220 $this->assertEqualsIgnoreEOL( $option_no_change, $output ); 220 221 } 221 222
Note: See TracChangeset
for help on using the changeset viewer.