diff --git a/tests/functional/SeeRawAndParsedBodyIsNotNullCept.php b/tests/functional/SeeRawAndParsedBodyIsNotNullCept.php index 0dade93..6eb57bb 100644 --- a/tests/functional/SeeRawAndParsedBodyIsNotNullCept.php +++ b/tests/functional/SeeRawAndParsedBodyIsNotNullCept.php @@ -2,7 +2,7 @@ $I = new FunctionalTester($scenario); $data = ['testing' => '123']; -$I->wantTo('test that the parsed request body is returned in tact'); +$I->wantTo('test that the raw and parsed request body is returned in tact'); $I->haveHttpHeader('content-type', 'application/json'); $I->sendPOST('/rest', $data); $I->seeResponseCodeIs(\Codeception\Util\HttpCode::OK);