From f1759f5cd5ddb27320748bdd5f8499e7041deede Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Thu, 23 Apr 2009 16:22:17 +0000 Subject: [PATCH] fixing lib paths on some tests --- t/Shop/Tax.t | 2 +- t/Shop/TaxDriver/Generic.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Shop/Tax.t b/t/Shop/Tax.t index cb7380105..a923d8dfc 100644 --- a/t/Shop/Tax.t +++ b/t/Shop/Tax.t @@ -15,7 +15,7 @@ use FindBin; use strict; -use lib "$FindBin::Bin/lib"; +use lib "$FindBin::Bin/../lib"; use Test::More; use WebGUI::Test; # Must use this before any other WebGUI modules use WebGUI::Session; diff --git a/t/Shop/TaxDriver/Generic.t b/t/Shop/TaxDriver/Generic.t index 7fbb8d359..8747219aa 100644 --- a/t/Shop/TaxDriver/Generic.t +++ b/t/Shop/TaxDriver/Generic.t @@ -15,7 +15,7 @@ use FindBin; use strict; -use lib "$FindBin::Bin/../lib"; +use lib "$FindBin::Bin/../../lib"; use Test::More; use Test::Deep; use Exception::Class;