From 9162bd68c9bfad947dec981fb25477dd3c7a6c14 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 7 May 2010 17:53:17 -0700 Subject: [PATCH] Return the correct path for the WebGUI lib directory in WebGUI::Test. Should probably just use WebGUI::Path instead. --- t/lib/WebGUI/Test.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lib/WebGUI/Test.pm b/t/lib/WebGUI/Test.pm index e97f8e9b7..3ed762aa5 100644 --- a/t/lib/WebGUI/Test.pm +++ b/t/lib/WebGUI/Test.pm @@ -444,7 +444,7 @@ Returns the full path to the WebGUI lib directory, usually /data/WebGUI/lib. =cut -our $WEBGUI_LIB = File::Spec->catdir( $WEBGUI_TEST_ROOT, File::Spec->updir ); +our $WEBGUI_LIB = File::Spec->catdir( $WEBGUI_TEST_ROOT, File::Spec->updir, 'lib' ); sub lib { return our $WEBGUI_LIB;