pass ACH account type, Freeside RT#20551
[Business-OnlinePayment-IPPay.git] / t / check.t
index 7e05a52..892f367 100644 (file)
--- a/t/check.t
+++ b/t/check.t
@@ -1,8 +1,9 @@
 #!/usr/bin/perl -w
 
 use Test::More;
+require "t/lib/test_account.pl";
 
-my($login, $password, %opt) = ('TESTMERCHANT', '', 'Origin' => 'RECURRING' );
+my($login, $password, %opt) = test_account_or_skip('check');
 plan tests => 16;
 
 use_ok 'Business::OnlinePayment';
@@ -18,7 +19,7 @@ my %content = (
     account_number => '12345',
     routing_code   => '111000025',  # BoA in Texas taken from Wikipedia
     bank_name      => 'First National Test Bank',
-    account_type   => 'Checking',
+    account_type   => 'Business Checking',
 );
 
 my $voidable;