From 741fc64d63ab39ea0e50d2615080890d11ff95e6 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 22 Sep 2010 13:53:08 -0700 Subject: [PATCH] Test->lib returns the correct path --- lib/WebGUI/Test.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Test.pm b/lib/WebGUI/Test.pm index dc264be5c..f003fe9a8 100644 --- a/lib/WebGUI/Test.pm +++ b/lib/WebGUI/Test.pm @@ -422,7 +422,7 @@ Returns the full path to the WebGUI lib directory, usually /data/WebGUI/lib. =cut -my $webgui_lib = realpath( catdir( dirname( __FILE__ ), (updir) x 3 ) ); +my $webgui_lib = realpath( catdir( dirname( __FILE__ ), (updir) x 1 ) ); sub lib { return $webgui_lib; }