From 6dd91ea8f4a736d106155e88d6481a48749ea452 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 30 May 2007 21:43:25 +0000 Subject: [PATCH] fix a test that leaks a user and casues t/Macro/SQL.t to fail if they are called in the correct order --- t/Session/DateTime.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Session/DateTime.t b/t/Session/DateTime.t index c8bbe3f76..7a1b78597 100644 --- a/t/Session/DateTime.t +++ b/t/Session/DateTime.t @@ -282,7 +282,7 @@ sub installBadLocale { END { unlink File::Spec->catfile(WebGUI::Test->lib, qw/WebGUI i18n BadLocale.pm/); - foreach my $account ($buster, $dude) { + foreach my $account ($buster, $dude, $bud) { (defined $account and ref $account eq 'WebGUI::User') and $account->delete; } }