diff --git a/test/unitTests/app/note/NoteControllerTest.php b/test/unitTests/app/note/NoteControllerTest.php index 2f2f52a3d7551ba5701a9bfd458ff21efed5f1bf..b64349e2a5a4b368a600c8f1af94daa330a8dcd3 100644 --- a/test/unitTests/app/note/NoteControllerTest.php +++ b/test/unitTests/app/note/NoteControllerTest.php @@ -143,6 +143,6 @@ class NoteControllerTest extends TestCase $response = $noteController->create($fullRequest, new \Slim\Http\Response(), $resID); $responseBody = json_decode((string)$response->getBody()); - $this->assertSame('Bad Request', $responseBody->errors); + $this->assertSame('Bad Request note text', $responseBody->errors); } }