Browse Source

updated Aauth/ErrorsTest.php

v3-dev
REJack 6 years ago
parent
commit
9d28b164d2
No known key found for this signature in database
GPG Key ID: 4A44B48700429F46
  1. 4
      tests/Aauth/Libraries/Aauth/ErrorsTest.php

4
tests/Aauth/Libraries/Aauth/ErrorsTest.php

@ -66,8 +66,8 @@ class ErrorsTest extends \CIUnitTestCase
{
$session = $this->getInstance();
$this->library = new Aauth(NULL, $session);
$this->assertCount(0, $this->session->get('errors'));
$this->assertCount(0, $session->get('errors'));
$this->library->error('test message 1', true);
$this->assertCount(1, $this->session->get('errors'));
$this->assertCount(1, $session->get('errors'));
}
}

Loading…
Cancel
Save