diff --git a/tests/php/Forms/ConfirmedPasswordFieldTest.php b/tests/php/Forms/ConfirmedPasswordFieldTest.php index 42aa33c35..d49136e19 100644 --- a/tests/php/Forms/ConfirmedPasswordFieldTest.php +++ b/tests/php/Forms/ConfirmedPasswordFieldTest.php @@ -442,7 +442,9 @@ class ConfirmedPasswordFieldTest extends SapphireTest // CWP front-end templates break this logic - but there's no easy fix for that. // For the most part we are interested in ensuring this works in the CMS with default templates. $originalThemes = SSViewer::get_themes(); - SSViewer::set_themes(LeftAndMain::config()->uninherited('admin_themes')); + if (class_exists(LeftAndMain::class)) { + SSViewer::set_themes(LeftAndMain::config()->uninherited('admin_themes')); + } try { $form = new Form(); $field = new ConfirmedPasswordField('Test');