From 8abfd0a2d049fed250a5f20c7d893b93d6e24128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannis=20Mo=C3=9Fhammer?= Date: Mon, 3 Jun 2013 16:23:37 +0200 Subject: [PATCH] Add tested application-wide resources - Logging - Qlinks refs #4212 --- tests/php/application/views/helpers/QlinkTest.php | 2 +- tests/php/library/Icinga/Application/LoggerTest.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/php/application/views/helpers/QlinkTest.php b/tests/php/application/views/helpers/QlinkTest.php index 822329b6e..ad4c5e3be 100755 --- a/tests/php/application/views/helpers/QlinkTest.php +++ b/tests/php/application/views/helpers/QlinkTest.php @@ -15,7 +15,7 @@ if(!class_exists('Zend_View_Helper_Abstract')) { }; } -require('../application/views/helpers/Qlink.php'); +require('../../application/views/helpers/Qlink.php'); /** diff --git a/tests/php/library/Icinga/Application/LoggerTest.php b/tests/php/library/Icinga/Application/LoggerTest.php index 5f9021979..d36f10a0d 100644 --- a/tests/php/library/Icinga/Application/LoggerTest.php +++ b/tests/php/library/Icinga/Application/LoggerTest.php @@ -9,8 +9,8 @@ require_once("Zend/Log/Writer/Mock.php"); require_once("Zend/Log/Writer/Null.php"); require_once("Zend/Log/Filter/Priority.php"); -require_once("../library/Icinga/Application/Logger.php"); -require_once("../library/Icinga/Exception/ConfigurationError.php"); +require_once("../../library/Icinga/Application/Logger.php"); +require_once("../../library/Icinga/Exception/ConfigurationError.php"); use \Icinga\Application\Logger as Logger; /**