Make WordPress Core

Ticket #48074: 48074.4.patch

File 48074.4.patch, 1.2 KB (added by dkarfa, 5 years ago)
  • phpunit/tests/rest-api/rest-schema-setup.php

     
    449449                        );
    450450                        $this->assertTrue( ! empty( $data ), $route['name'] . ' route should return data.' );
    451451
    452                         if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) {
    453                                 $fixture           = $this->normalize_fixture( $data, $route['name'] );
    454                                 $mocked_responses .= "\nmockedApiResponse." . $route['name'] . ' = '
     452                        $fixture           = $this->normalize_fixture( $data, $route['name'] );
     453                        $mocked_responses .= "\nmockedApiResponse." . $route['name'] . ' = '
    455454                                        . json_encode( $fixture, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES )
    456455                                        . ";\n";
    457                         }
     456
    458457                }
    459458
    460459                // Only generate API client fixtures in single site and when required JSON_* constants are supported.
    461                 if ( ! is_multisite() && version_compare( PHP_VERSION, '5.4', '>=' ) ) {
     460                if ( ! is_multisite() ) {
    462461                        // Save the route object for QUnit tests.
    463462                        $file = dirname( DIR_TESTROOT ) . '/qunit/fixtures/wp-api-generated.js';
    464463                        file_put_contents( $file, $mocked_responses );