diff --git a/tests/modules/core/lib/Auth/Process/CardinalityTest.php b/tests/modules/core/lib/Auth/Process/CardinalityTest.php index edccfbab0a19f3a25216f4826f6beef56f82a336..21d2408f563de0e7dbc2ec223c87eb08780e3f5c 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(); }