Make WordPress Core


Ignore:
Timestamp:
10/28/2016 02:06:17 AM (8 years ago)
Author:
pento
Message:

REST API: Revert [38980].

/users/me still needs attention, but this change wasn't quite ready.

See #38521.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-users-controller.php

    r38980 r38990  
    636636
    637637        $response = $this->server->dispatch( $request );
    638         $this->assertEquals( 200, $response->get_status() );
     638        $this->assertEquals( 302, $response->get_status() );
    639639
    640640        $headers = $response->get_headers();
    641         $this->assertArrayNotHasKey( 'Location', $headers );
    642 
    643         $links = $response->get_links();
    644         $this->assertEquals( rest_url( 'wp/v2/users/' . self::$user ), $links['self'][0]['href'] );
     641        $this->assertArrayHasKey( 'Location', $headers );
     642        $this->assertEquals( rest_url( 'wp/v2/users/' . self::$user ), $headers['Location'] );
    645643    }
    646644
Note: See TracChangeset for help on using the changeset viewer.