Make WordPress Core


Ignore:
Timestamp:
07/14/2020 01:28:17 AM (4 years ago)
Author:
SergeyBiryukov
Message:

Tests: Replace hardcoded /tmp/ references with get_temp_dir().

This allows more tests to pass on Windows.

Props danielhuesken, DJPaul, christophherr, joemcgill, netweb, davidbaumwald, SergeyBiryukov.
Fixes #40856, #39975.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/widgets/media-image-widget.php

    r46586 r48464  
    413413        $widget = new WP_Widget_Media_Image();
    414414
    415         $test_image = '/tmp/canola.jpg';
     415        $test_image = get_temp_dir() . 'canola.jpg';
    416416        copy( DIR_TESTDATA . '/images/canola.jpg', $test_image );
    417417        $attachment_id = self::factory()->attachment->create_object(
Note: See TracChangeset for help on using the changeset viewer.