From 44ade4a15e22885de80e51eb2f133bbfa32b23c5 Mon Sep 17 00:00:00 2001 From: REJack Date: Fri, 7 Dec 2018 09:59:59 +0100 Subject: [PATCH] updated Aauth/ErrorsTest.php --- tests/Aauth/Libraries/Aauth/ErrorsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Aauth/Libraries/Aauth/ErrorsTest.php b/tests/Aauth/Libraries/Aauth/ErrorsTest.php index 3aaaad3..c78a059 100644 --- a/tests/Aauth/Libraries/Aauth/ErrorsTest.php +++ b/tests/Aauth/Libraries/Aauth/ErrorsTest.php @@ -66,7 +66,7 @@ class ErrorsTest extends \CIUnitTestCase { $session = $this->getInstance(); $this->library = new Aauth(NULL, $session); - $this->assertCount(0, $session->get('errors')); + $this->assertFalse($session->get('errors')); $this->library->error('test message 1', true); $this->assertCount(1, $session->get('errors')); }