Changeset 48937 for trunk/tests/phpunit/tests/post/listPages.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/post/listPages.php
r48280 r48937 144 144 </ul></li>'; 145 145 146 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );146 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 147 147 } 148 148 … … 158 158 </ul></li>'; 159 159 160 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );160 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 161 161 } 162 162 … … 174 174 </ul></li>'; 175 175 176 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );176 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 177 177 } 178 178 … … 208 208 </ul></li>'; 209 209 210 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );210 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 211 211 } 212 212 … … 222 222 </ul></li>'; 223 223 224 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );224 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 225 225 } 226 226 … … 250 250 </ul></li>'; 251 251 252 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );252 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 253 253 } 254 254 … … 265 265 </ul></li>'; 266 266 267 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );267 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 268 268 } 269 269 … … 292 292 </ul></li>'; 293 293 294 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );294 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 295 295 } 296 296 … … 305 305 </ul></li>'; 306 306 307 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );307 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 308 308 } 309 309 … … 321 321 </ul></li>'; 322 322 323 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );323 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 324 324 } 325 325 … … 353 353 </ul></li>'; 354 354 355 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );355 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 356 356 } 357 357 … … 385 385 </ul></li>'; 386 386 387 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );387 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 388 388 } 389 389 … … 399 399 </ul></li>'; 400 400 401 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );401 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 402 402 } 403 403 … … 417 417 </ul></li>'; 418 418 419 $this->assert EqualsIgnoreEOL( $expected, wp_list_pages( $args ) );419 $this->assertSameIgnoreEOL( $expected, wp_list_pages( $args ) ); 420 420 } 421 421 … … 447 447 $expected = str_replace( array( "\r\n", "\n", "\t" ), '', $expected ); 448 448 449 $this->assert Equals( $expected, wp_list_pages( $args ) );449 $this->assertSame( $expected, wp_list_pages( $args ) ); 450 450 } 451 451 }
Note: See TracChangeset
for help on using the changeset viewer.