From 620a5edb7f266b58260add1626c6ba470e7e8d42 Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Sun, 22 Jan 2017 20:05:54 +0700 Subject: [PATCH] Fixed Security tests --- .../Security/Authentication/UserProvider/InternalTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/PHPCensor/Security/Authentication/UserProvider/InternalTest.php b/tests/PHPCensor/Security/Authentication/UserProvider/InternalTest.php index 1f8acb98..a8984e9f 100644 --- a/tests/PHPCensor/Security/Authentication/UserProvider/InternalTest.php +++ b/tests/PHPCensor/Security/Authentication/UserProvider/InternalTest.php @@ -22,7 +22,9 @@ class InternalTest extends \PHPUnit_Framework_TestCase protected function setUp() { - $this->provider = new Internal("internal"); + $this->provider = new Internal('internal', [ + 'type' => 'internal', + ]); } /**