From ff059db80238070e3ade577c8322fd5e0e37ef5c Mon Sep 17 00:00:00 2001 From: REJack Date: Fri, 7 Dec 2018 10:16:19 +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 97c38cd..c7fcbef 100644 --- a/tests/Aauth/Libraries/Aauth/ErrorsTest.php +++ b/tests/Aauth/Libraries/Aauth/ErrorsTest.php @@ -75,6 +75,6 @@ class ErrorsTest extends \CIUnitTestCase $this->library = new Aauth(NULL, $session); $this->assertNull($session->get('errors')); $this->library->error('test message 1', true); - $this->assertCount(1, $session->get('errors')); + $this->assertCount(1, $session->errors); } }