Skip to content

Commit 599386e

Browse files
committed
XOL-2788 Fix array syntax for PHP 5.3 compatibility
1 parent b6edd12 commit 599386e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/CIMGatewayIntegrationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public function testAuthorizeAndVoid()
165165
$this->assertNotNull($response->getTransactionReference(), 'Transaction reference should exist');
166166

167167
// Make a refund on the purchase transaction
168-
$request = $this->gateway->void(['transactionReference' => $response->getTransactionReference()]);
168+
$request = $this->gateway->void(array('transactionReference' => $response->getTransactionReference()));
169169
$request->setDeveloperMode(true);
170170

171171
$response = $request->send();

0 commit comments

Comments
 (0)