Changeset 51564 for trunk/tests/phpunit/tests/multisite/site.php
- Timestamp:
- 08/06/2021 09:45:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/site.php
r51462 r51564 392 392 // The file on the main site should still exist. The file on the deleted site should not. 393 393 $this->assertFileExists( $file1['file'] ); 394 $this->assertFile NotExists( $file2['file'] );394 $this->assertFileDoesNotExist( $file2['file'] ); 395 395 396 396 wpmu_delete_blog( $blog_id, true ); … … 398 398 // The file on the main site should still exist. The file on the deleted site should not. 399 399 $this->assertFileExists( $file1['file'] ); 400 $this->assertFile NotExists( $file2['file'] );400 $this->assertFileDoesNotExist( $file2['file'] ); 401 401 } 402 402
Note: See TracChangeset
for help on using the changeset viewer.