Changeset 45607 for trunk/tests/phpunit/tests/multisite/getSpaceUsed.php
- Timestamp:
- 07/08/2019 12:55:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/getSpaceUsed.php
r42343 r45607 29 29 // src directory already contains a content directory with site content, then the initial expectation 30 30 // will be polluted. We create sites until an empty one is available. 31 while ( 0 != get_space_used() ) {31 while ( 0 !== get_space_used() ) { 32 32 restore_current_blog(); 33 33 $blog_id = self::factory()->blog->create(); … … 65 65 // so that we can remove any uploaded files and directories without concern of a conflict with 66 66 // existing content directories in src. 67 while ( 0 != get_space_used() ) {67 while ( 0 !== get_space_used() ) { 68 68 restore_current_blog(); 69 69 $blog_id = self::factory()->blog->create();
Note: See TracChangeset
for help on using the changeset viewer.