mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing failing tests caused by adding new validator, blind editing... hoping for the best
This commit is contained in:
parent
18c3fa79c9
commit
06476a22da
1 changed files with 2 additions and 2 deletions
|
@ -315,7 +315,7 @@ class ModelTaskTest extends CakeTestCase {
|
|||
$this->Task->initValidations();
|
||||
$this->Task->interactive = true;
|
||||
$this->Task->expects($this->any())->method('in')
|
||||
->will($this->onConsecutiveCalls('22', 'y', '17', 'n'));
|
||||
->will($this->onConsecutiveCalls('23', 'y', '17', 'n'));
|
||||
|
||||
$result = $this->Task->fieldValidation('text', array('type' => 'string', 'length' => 10, 'null' => false));
|
||||
$expected = array('notempty' => 'notempty', 'maxlength' => 'maxlength');
|
||||
|
@ -333,7 +333,7 @@ class ModelTaskTest extends CakeTestCase {
|
|||
$this->Task->interactive = true;
|
||||
|
||||
$this->Task->expects($this->any())->method('in')
|
||||
->will($this->onConsecutiveCalls('999999', '22', 'n'));
|
||||
->will($this->onConsecutiveCalls('999999', '23', 'n'));
|
||||
|
||||
$this->Task->expects($this->at(7))->method('out')
|
||||
->with($this->stringContains('make a valid'));
|
||||
|
|
Loading…
Reference in a new issue