Update the controller test with new validation tweak

This commit is contained in:
Lonnie Ezell 2017-09-22 23:39:10 -05:00
parent 0bda6ee402
commit 8eba1da1f1
No known key found for this signature in database
GPG Key ID: 8EB408F8D82F5002

View File

@ -82,7 +82,7 @@ class ControllerTest extends \CIUnitTestCase
// make sure we can instantiate one
$this->controller = new Controller($this->request, $this->response);
// and that we can attempt validation, with no rules
$this->assertTrue($this->controller->validate([]));
$this->assertFalse($this->controller->validate([]));
}
//--------------------------------------------------------------------