Skip to content

Commit

Permalink
- Fix BadRequest.php and ServerError.php definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
IndexZer0 committed Feb 26, 2024
1 parent 59620b6 commit bf79885
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 2 additions & 4 deletions tests/ResponseDefinitions/GeneralHttp/BadRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ public function __construct()
parent::__construct(
400,
'text/plain; charset=utf-8',
"500 Internal Server Error
Server got itself in trouble",
'Internal Server Error'
"400: Bad Request",
'Bad Request'
);
}
}
6 changes: 4 additions & 2 deletions tests/ResponseDefinitions/GeneralHttp/ServerError.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ public function __construct()
parent::__construct(
500,
'text/plain; charset=utf-8',
'400: Bad Request',
'Bad Request'
'500 Internal Server Error
Server got itself in trouble',
'Internal Server Error'
);
}
}

0 comments on commit bf79885

Please sign in to comment.