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-gallery-widget.php

    r46586 r48464  
    5959        $attachments = array();
    6060        foreach ( array( 'canola.jpg', 'waffles.jpg' ) as $filename ) {
    61             $test_image = '/tmp/' . $filename;
     61            $test_image = get_temp_dir() . $filename;
    6262            copy( DIR_TESTDATA . '/images/canola.jpg', $test_image );
    6363            $attachment_id = self::factory()->attachment->create_object(
Note: See TracChangeset for help on using the changeset viewer.