From 9d28b164d2578b12385194cad403ca5de9f53118 Mon Sep 17 00:00:00 2001 From: REJack Date: Fri, 7 Dec 2018 09:56:41 +0100 Subject: [PATCH] updated Aauth/ErrorsTest.php --- tests/Aauth/Libraries/Aauth/ErrorsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Aauth/Libraries/Aauth/ErrorsTest.php b/tests/Aauth/Libraries/Aauth/ErrorsTest.php index 220690d..3aaaad3 100644 --- a/tests/Aauth/Libraries/Aauth/ErrorsTest.php +++ b/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')); } }