- Timestamp:
- 08/06/2021 09:45:32 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/ms-files-rewriting.php
r50463 r51564 77 77 // The file on the main site should still exist. The file on the deleted site should not. 78 78 $this->assertFileExists( $file1['file'] ); 79 $this->assertFile NotExists( $file2['file'] );79 $this->assertFileDoesNotExist( $file2['file'] ); 80 80 81 81 wpmu_delete_blog( $blog_id, true ); … … 83 83 // The file on the main site should still exist. The file on the deleted site should not. 84 84 $this->assertFileExists( $file1['file'] ); 85 $this->assertFile NotExists( $file2['file'] );85 $this->assertFileDoesNotExist( $file2['file'] ); 86 86 } 87 87 }
Note: See TracChangeset
for help on using the changeset viewer.