REST API: Fix error in Request tests.

On the 21st of November, 2014, I committed tests for WP_REST_Request
to the API plugin. Although I didn't realise at the time, I was
causing my future self to go through hours of sufferring.

Unfortunately, I forgot to call parent::setUp() which would break
the tests in subtle ways in the future and would ruin the good part
of my day.

Let this be a warning to all of you who write future unit tests.

See f0396be17e
for the original commit.


git-svn-id: https://develop.svn.wordpress.org/trunk@36678 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan McCue 2016-02-24 08:28:12 +00:00
parent fb89bad3e1
commit b464a4ba3a
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@
*/
class Tests_REST_Request extends WP_UnitTestCase {
public function setUp() {
parent::setUp();
$this->request = new WP_REST_Request();
}