Changeset 49730
- Timestamp:
- 12/01/2020 07:40:50 PM (4 years ago)
- Location:
- branches/5.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.6
-
branches/5.6/tests/phpunit/tests/admin/includesListTable.php
r49603 r49730 376 376 $output = ob_get_clean(); 377 377 378 $this->assertContains( 379 <<<'OPTIONS' 378 $expected = <<<'OPTIONS' 380 379 <option value="delete">Delete</option> 381 380 <optgroup label="Change State"> … … 383 382 <option value="sale">On Sale</option> 384 383 </optgroup> 385 OPTIONS 386 ,387 $output 388 );384 OPTIONS; 385 $expected = str_replace( "\r\n", "\n", $expected ); 386 387 $this->assertContains( $expected, $output ); 389 388 } 390 389
Note: See TracChangeset
for help on using the changeset viewer.