From 1cd7d8fbc7810ea813b2dcf5789cb3595261efb3 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 14 Apr 2010 11:41:20 -0700 Subject: [PATCH] Remove dead END blocks from some tests. --- t/Asset/Wobject/WikiMaster/featured.t | 4 ---- t/Macro/PageUrl.t | 4 ---- 2 files changed, 8 deletions(-) diff --git a/t/Asset/Wobject/WikiMaster/featured.t b/t/Asset/Wobject/WikiMaster/featured.t index c070bfb44..ef0d98bab 100644 --- a/t/Asset/Wobject/WikiMaster/featured.t +++ b/t/Asset/Wobject/WikiMaster/featured.t @@ -69,9 +69,5 @@ cmp_deeply( "appendFeaturedPageVars returns correct variables, prefixed with 'featured_'", ); -#---------------------------------------------------------------------------- -# Cleanup -END { -} #vim:ft=perl diff --git a/t/Macro/PageUrl.t b/t/Macro/PageUrl.t index dd6853b64..97d9cb4df 100644 --- a/t/Macro/PageUrl.t +++ b/t/Macro/PageUrl.t @@ -65,7 +65,3 @@ $output = WebGUI::Macro::PageUrl::process($session, '/sub/page', 'query=this'); like($output, qr{/sub/page\?noCache=\d+:\d+;query=this$}, 'checking that the query arg works with preventProxyCache'); } - -END { - # See note in the Slash_gateway macro test about this. -}