mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
update tests
This commit is contained in:
parent
7c4a698bde
commit
cc0c65d7ea
1 changed files with 12 additions and 0 deletions
|
@ -1132,6 +1132,10 @@ class CakeResponseTest extends CakeTestCase {
|
||||||
->with('Accept-Ranges', 'bytes');
|
->with('Accept-Ranges', 'bytes');
|
||||||
|
|
||||||
$response->expects($this->at(3))
|
$response->expects($this->at(3))
|
||||||
|
->method('header')
|
||||||
|
->with('Content-Transfer-Encoding', 'binary');
|
||||||
|
|
||||||
|
$response->expects($this->at(4))
|
||||||
->method('header')
|
->method('header')
|
||||||
->with('Content-Length', 35);
|
->with('Content-Length', 35);
|
||||||
|
|
||||||
|
@ -1193,6 +1197,10 @@ class CakeResponseTest extends CakeTestCase {
|
||||||
->with('Accept-Ranges', 'bytes');
|
->with('Accept-Ranges', 'bytes');
|
||||||
|
|
||||||
$response->expects($this->at(4))
|
$response->expects($this->at(4))
|
||||||
|
->method('header')
|
||||||
|
->with('Content-Transfer-Encoding', 'binary');
|
||||||
|
|
||||||
|
$response->expects($this->at(5))
|
||||||
->method('header')
|
->method('header')
|
||||||
->with('Content-Length', 35);
|
->with('Content-Length', 35);
|
||||||
|
|
||||||
|
@ -1253,6 +1261,10 @@ class CakeResponseTest extends CakeTestCase {
|
||||||
->with('Accept-Ranges', 'bytes');
|
->with('Accept-Ranges', 'bytes');
|
||||||
|
|
||||||
$response->expects($this->at(4))
|
$response->expects($this->at(4))
|
||||||
|
->method('header')
|
||||||
|
->with('Content-Transfer-Encoding', 'binary');
|
||||||
|
|
||||||
|
$response->expects($this->at(5))
|
||||||
->method('header')
|
->method('header')
|
||||||
->with('Content-Length', 35);
|
->with('Content-Length', 35);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue