From 72478e8d17e5035110a3a2d1fdd5b232f1c522a6 Mon Sep 17 00:00:00 2001 From: plobbes Date: Fri, 19 Jan 2007 05:29:23 +0000 Subject: [PATCH] remove unnecessary BEGIN block --- t/00load.t | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/t/00load.t b/t/00load.t index 0eb8c34..32f49fc 100644 --- a/t/00load.t +++ b/t/00load.t @@ -4,10 +4,8 @@ use strict; use warnings; use Test::More tests => 2; -BEGIN { - use_ok("Business::OnlinePayment") - or BAIL_OUT("unable to load Business::OnlinePayment\n"); +use_ok("Business::OnlinePayment") + or BAIL_OUT("unable to load Business::OnlinePayment\n"); - use_ok("Business::OnlinePayment::PayflowPro") - or BAIL_OUT("unable to load Business::OnlinePayment::PayflowPro\n"); -} +use_ok("Business::OnlinePayment::PayflowPro") + or BAIL_OUT("unable to load Business::OnlinePayment::PayflowPro\n"); -- 2.11.0