From 10ffb96b7eb58707a0389e0b31eed93d98314994 Mon Sep 17 00:00:00 2001 From: Gianluca Sforna Date: Mon, 18 May 2009 10:25:15 +0200 Subject: [PATCH] Fix warning --- tests/TestConfig.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestConfig.php b/tests/TestConfig.php index f9e6451c9d..f0f7ae0f71 100644 --- a/tests/TestConfig.php +++ b/tests/TestConfig.php @@ -42,7 +42,8 @@ */ $mantisRoot = dirname(__FILE__) . '/..'; $mantisCore = "$mantisRoot/core"; -$mantisLibrary = "$mantisRoot/core/classes"; +$mantisLibrary = "$mantisRoot/library"; +$mantisClasses = "$mantisRoot/core/classes"; $mantisTests = "$mantisRoot/tests";