Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
akDeveloper committed Oct 5, 2012
1 parent ae7f6d9 commit d1b0d46
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions unit_tests/AktiveMerchant/Billing/Gateways/AuthorizeNetTest.php
Expand Up @@ -29,25 +29,27 @@ class AuthorizeNetTest extends AktiveMerchant\TestCase
/**
* Setup
*/
function setUp()
public function setUp()
{
Base::mode('test');

$login_info = array(
'login' => 'x',
'password' => 'y');
'password' => 'y'
);
$this->gateway = new AuthorizeNet($login_info);

$this->amount = 100;
$this->creditcard = new CreditCard(array(
"first_name" => "John",
"last_name" => "Doe",
"number" => "4111111111111111",
"month" => "01",
"year" => "2015",
"verification_value" => "000"
)
);
$this->creditcard = new CreditCard(
array(
"first_name" => "John",
"last_name" => "Doe",
"number" => "4111111111111111",
"month" => "01",
"year" => "2015",
"verification_value" => "000"
)
);
$this->options = array(
'order_id' => 'REF' . $this->gateway->generateUniqueId(),
'description' => 'Autorize.net Test Transaction',
Expand Down

0 comments on commit d1b0d46

Please sign in to comment.