Changeset 48996 for trunk/tests/phpunit/tests/option/option.php
- Timestamp:
- 09/18/2020 01:22:22 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/option.php
r48937 r48996 102 102 /** 103 103 * @ticket 23289 104 * @expectedException WPDieException105 104 */ 106 105 function test_special_option_name_alloption() { 106 $this->expectException( 'WPDieException' ); 107 107 delete_option( 'alloptions' ); 108 108 } … … 110 110 /** 111 111 * @ticket 23289 112 * @expectedException WPDieException113 112 */ 114 113 function test_special_option_name_notoptions() { 114 $this->expectException( 'WPDieException' ); 115 115 delete_option( 'notoptions' ); 116 116 }
Note: See TracChangeset
for help on using the changeset viewer.