Changeset 51331 for trunk/tests/phpunit/tests/multisite/network.php
- Timestamp:
- 07/05/2021 05:21:53 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/network.php
r49603 r51331 353 353 wp_schedule_event( time(), 'twicedaily', 'update_network_counts' ); 354 354 355 $this->assertI nternalType( 'int',wp_next_scheduled( 'update_network_counts' ) );355 $this->assertIsInt( wp_next_scheduled( 'update_network_counts' ) ); 356 356 } 357 357 … … 366 366 $user_id = self::factory()->user->create( array( 'role' => 'administrator' ) ); 367 367 $blog_id = self::factory()->blog->create( array( 'user_id' => $user_id ) ); 368 $this->assertI nternalType( 'int',$blog_id );368 $this->assertIsInt( $blog_id ); 369 369 370 370 // Set the dashboard blog to another one.
Note: See TracChangeset
for help on using the changeset viewer.