From f26901b4ec1dbed16506cdcbeabbe37f6f7ebdf4 Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tim.dijen@minbzk.nl> Date: Thu, 3 Oct 2019 12:38:53 +0200 Subject: [PATCH] Fix case --- tests/modules/core/lib/Auth/Process/CardinalityTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/core/lib/Auth/Process/CardinalityTest.php b/tests/modules/core/lib/Auth/Process/CardinalityTest.php index edccfbab0..21d2408f5 100644 --- a/tests/modules/core/lib/Auth/Process/CardinalityTest.php +++ b/tests/modules/core/lib/Auth/Process/CardinalityTest.php @@ -3,7 +3,7 @@ namespace SimpleSAML\Test\Module\core\Auth\Process; use SimpleSAML\Error\Exception as SspException; -use SimpleSAML\Utils\HTTPAdapter; +use SimpleSAML\Utils\HttpAdapter; /** * Test for the core:Cardinality filter. @@ -41,7 +41,7 @@ class CardinalityTest extends \PHPUnit\Framework\TestCase protected function setUp() { \SimpleSAML\Configuration::loadFromArray([], '[ARRAY]', 'simplesaml'); - $this->http = $this->getMockBuilder(HTTPAdapter::class) + $this->http = $this->getMockBuilder(HttpAdapter::class) ->setMethods(['redirectTrustedURL']) ->getMock(); } -- GitLab