Changeset 51568 for trunk/tests/phpunit/tests/image/editorImagick.php
- Timestamp:
- 08/07/2021 10:29:41 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/image/editorImagick.php
r51564 r51568 14 14 public $editor_engine = 'WP_Image_Editor_Imagick'; 15 15 16 public function set Up() {16 public function set_up() { 17 17 require_once ABSPATH . WPINC . '/class-wp-image-editor.php'; 18 18 require_once ABSPATH . WPINC . '/class-wp-image-editor-imagick.php'; … … 20 20 21 21 // This needs to come after the mock image editor class is loaded. 22 parent::set Up();23 } 24 25 public function tear Down() {22 parent::set_up(); 23 } 24 25 public function tear_down() { 26 26 $folder = DIR_TESTDATA . '/images/waffles-*.jpg'; 27 27 … … 32 32 $this->remove_added_uploads(); 33 33 34 parent::tear Down();34 parent::tear_down(); 35 35 } 36 36
Note: See TracChangeset
for help on using the changeset viewer.