Changeset 53791 for trunk/tests/phpunit/tests/cron.php
- Timestamp:
- 07/29/2022 03:32:58 AM (3 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/cron.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/cron.php
r53573 r53791 131 131 132 132 // Verify that the cause of the error is in place. 133 $this->assertFalse( _get_cron_array(), '_get_cron_array() does not return false' ); 133 $this->assertIsArray( _get_cron_array(), '_get_cron_array() does not return an array.' ); 134 $this->assertEmpty( _get_cron_array(), '_get_cron_array() does not return an empty array.' ); 134 135 135 136 $hook = __FUNCTION__; … … 152 153 153 154 // Verify that the cause of the error is in place. 154 $this->assertFalse( _get_cron_array(), '_get_cron_array() does not return false' ); 155 $this->assertIsArray( _get_cron_array(), '_get_cron_array() does not return an array.' ); 156 $this->assertEmpty( _get_cron_array(), '_get_cron_array() does not return an empty array.' ); 155 157 156 158 $hook = __FUNCTION__;
Note: See TracChangeset
for help on using the changeset viewer.