diff options
author | plobbes <plobbes> | 2007-01-19 05:29:23 +0000 |
---|---|---|
committer | plobbes <plobbes> | 2007-01-19 05:29:23 +0000 |
commit | 72478e8d17e5035110a3a2d1fdd5b232f1c522a6 (patch) | |
tree | 58d695369e9b46e7ecbd2a87b9499d6f84d59984 | |
parent | 29900bbdb208240837822c20ab3bcd72ad8a1a6a (diff) |
remove unnecessary BEGIN block
-rw-r--r-- | t/00load.t | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -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"); |