diff --git a/tests/php/Control/DirectorTest.php b/tests/php/Control/DirectorTest.php index ac45e6351..5e34f2cdd 100644 --- a/tests/php/Control/DirectorTest.php +++ b/tests/php/Control/DirectorTest.php @@ -31,8 +31,13 @@ class DirectorTest extends SapphireTest Director::config()->set('alternate_base_url', 'http://www.mysite.com:9090/'); // Ensure redirects enabled on all environments - CanonicalURLMiddleware::singleton()->setEnabledEnvs(true); + $middleware = CanonicalURLMiddleware::singleton()->setEnabledEnvs(true); $this->expectedRedirect = null; + + // Ensure global state doesn't affect this test + $middleware + ->setForceSSLDomain(null) + ->setForceSSLPatterns([]); } protected function getExtraRoutes()