Commit c67c9296 by Qiang Xue

Fixed test break.

parent 50703f8a
...@@ -177,12 +177,7 @@ class FileValidatorTest extends TestCase ...@@ -177,12 +177,7 @@ class FileValidatorTest extends TestCase
$val = new FileValidator(['maxSize' => 128]); $val = new FileValidator(['maxSize' => 128]);
$val->validateAttribute($m, 'attr_files'); $val->validateAttribute($m, 'attr_files');
$this->assertTrue($m->hasErrors('attr_files')); $this->assertTrue($m->hasErrors('attr_files'));
$this->assertTrue( $this->assertTrue(stripos(current($m->getErrors('attr_files')), 'too big') !== false);
stripos(
current($m->getErrors('attr_files')),
str_ireplace(['{file}', '{limit}'], [$m->attr_files->name, 128], $val->tooBig)
) !== false
);
// to Small // to Small
$m = $this->createModelForAttributeTest(); $m = $this->createModelForAttributeTest();
$val = new FileValidator(['minSize' => 2048]); $val = new FileValidator(['minSize' => 2048]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment