Changeset 39173 for trunk/tests/phpunit/tests/multisite/site.php
- Timestamp:
- 11/08/2016 11:49:11 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/multisite/site.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/site.php
r38935 r39173 286 286 287 287 // The file on the main site should still exist. The file on the deleted site should not. 288 $this->assert True( file_exists( $file1['file'] ));289 $this->assertF alse( file_exists( $file2['file'] ));288 $this->assertFileExists( $file1['file'] ); 289 $this->assertFileNotExists( $file2['file'] ); 290 290 291 291 wpmu_delete_blog( $blog_id, true ); 292 292 293 293 // The file on the main site should still exist. The file on the deleted site should not. 294 $this->assert True( file_exists( $file1['file'] ));295 $this->assertF alse( file_exists( $file2['file'] ));294 $this->assertFileExists( $file1['file'] ); 295 $this->assertFileNotExists( $file2['file'] ); 296 296 } 297 297
Note: See TracChangeset
for help on using the changeset viewer.