From 746ba98ec7add9de72208e204e010f7f825d31c1 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 14 Jun 2010 14:29:07 -0700 Subject: [PATCH] Config->new in this branch needs the WebGUI root directory. --- 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 461c4dbbe..d32ff2692 100644 --- a/t/lib/WebGUI/Test.pm +++ b/t/lib/WebGUI/Test.pm @@ -358,7 +358,7 @@ sub config { return $config if $config; require WebGUI::Config; - $config = WebGUI::Config->new($CLASS->file, 1); + $config = WebGUI::Config->new($CLASS->root, $CLASS->file, 1); return $config; }