Changeset 48937 for trunk/tests/phpunit/tests/multisite/getSpaceAllowed.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/getSpaceAllowed.php
r46586 r48937 49 49 delete_site_option( 'blog_upload_space' ); 50 50 51 $this->assert Equals( 100, get_space_allowed() );51 $this->assertSame( 100, get_space_allowed() ); 52 52 } 53 53 … … 60 60 update_site_option( 'blog_upload_space', 200 ); 61 61 62 $this->assert Equals( 200, get_space_allowed() );62 $this->assertSame( 200, get_space_allowed() ); 63 63 } 64 64 … … 74 74 update_site_option( 'blog_upload_space', $network_option ); 75 75 76 $this->assert Equals( $expected, get_space_allowed() );76 $this->assertSame( $expected, get_space_allowed() ); 77 77 } 78 78 … … 109 109 remove_filter( 'get_space_allowed', array( $this, '_filter_space_allowed' ) ); 110 110 111 $this->assert Equals( 999, $space_allowed );111 $this->assertSame( 999, $space_allowed ); 112 112 } 113 113
Note: See TracChangeset
for help on using the changeset viewer.