From af342d6b3a6b31e7011c21767b7cfffaffdc5553 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 20 Feb 2014 14:02:29 +0100 Subject: [PATCH] Tests: Fix Fatal error: Class 'Icinga\Exception\NotReadableError' not found --- test/php/library/Icinga/Authentication/ManagerTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/test/php/library/Icinga/Authentication/ManagerTest.php b/test/php/library/Icinga/Authentication/ManagerTest.php index 1aee7e50f..28b821043 100644 --- a/test/php/library/Icinga/Authentication/ManagerTest.php +++ b/test/php/library/Icinga/Authentication/ManagerTest.php @@ -45,6 +45,7 @@ require_once BaseTestCase::$libDir . '/Authentication/Credential.php'; require_once BaseTestCase::$libDir . '/Authentication/Membership.php'; require_once BaseTestCase::$libDir . '/Exception/ConfigurationError.php'; require_once BaseTestCase::$libDir . '/Exception/ProgrammingError.php'; +require_once BaseTestCase::$libDir . '/Exception/NotReadableError.php'; require_once BaseTestCase::$libDir . '/Web/Session.php'; require_once 'BackendMock.php'; require_once 'ErrorProneBackendMock.php';