summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorAlex Brelsfoard <alex@Alexs-MacBook-Pro.local>2015-02-09 12:50:46 -0500
committerAlex Brelsfoard <alex@Alexs-MacBook-Pro.local>2015-02-09 12:50:46 -0500
commit4f046ec058d8516765a96f8e2e37c8cc4310fc4c (patch)
tree799ceed3681f3dcdd7c7631b1c9d15c6747b2dff /t
parentb315cd0480e94eac8bb8f71c63c4053b7828e172 (diff)
fixing test_account function call
Diffstat (limited to 't')
-rw-r--r--t/t_transaction.t2
-rw-r--r--t/t_transaction_decline.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/t_transaction.t b/t/t_transaction.t
index 3e1adb8..897e6f7 100644
--- a/t/t_transaction.t
+++ b/t/t_transaction.t
@@ -7,7 +7,7 @@ use Test::More;
use Business::OnlinePayment;
require "t/lib/test_account.pl";
-my %opts = test_account_or_skip('card');
+my %opts = test_account('card');
if (!$opts{'gid'} || !$opts{'appid'}) {
plan skip_all => "no test credentials provided; fill out t/lib/test_account.pl to test communication with the gateway.",
diff --git a/t/t_transaction_decline.t b/t/t_transaction_decline.t
index ce21cb7..2e15eb2 100644
--- a/t/t_transaction_decline.t
+++ b/t/t_transaction_decline.t
@@ -7,7 +7,7 @@ use Test::More;
use Business::OnlinePayment;
require "t/lib/test_account.pl";
-my %opts = test_account_or_skip('card');
+my %opts = test_account('card');
if (!$opts{'gid'} || !$opts{'appid'}) {
plan skip_all => "no test credentials provided; fill out t/lib/test_account.pl to test communication with the gateway.",