Changeset 51568 for trunk/tests/phpunit/tests/date/wpDate.php
- Timestamp:
- 08/07/2021 10:29:41 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/date/wpDate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/date/wpDate.php
r50291 r51568 11 11 private $wp_locale_original; 12 12 13 public function set Up() {13 public function set_up() { 14 14 global $wp_locale; 15 15 16 parent::set Up();16 parent::set_up(); 17 17 18 18 $this->wp_locale_original = clone $wp_locale; 19 19 } 20 20 21 public function tear Down() {21 public function tear_down() { 22 22 global $wp_locale; 23 23 24 24 $wp_locale = $this->wp_locale_original; 25 25 26 parent::tear Down();26 parent::tear_down(); 27 27 } 28 28
Note: See TracChangeset
for help on using the changeset viewer.