Changeset 48464 for trunk/tests/phpunit/tests/customize/manager.php
- Timestamp:
- 07/14/2020 01:28:17 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/customize/manager.php
r48438 r48464 61 61 62 62 $orig_file = DIR_TESTDATA . '/images/canola.jpg'; 63 $this->test_file = '/tmp/canola.jpg';63 $this->test_file = get_temp_dir() . 'canola.jpg'; 64 64 copy( $orig_file, $this->test_file ); 65 65 $orig_file2 = DIR_TESTDATA . '/images/waffles.jpg'; 66 $this->test_file2 = '/tmp/waffles.jpg';66 $this->test_file2 = get_temp_dir() . 'waffles.jpg'; 67 67 copy( $orig_file2, $this->test_file2 ); 68 68 }
Note: See TracChangeset
for help on using the changeset viewer.