From b17eae9cd2e9786345c03ed48abec30befbf4edd Mon Sep 17 00:00:00 2001 From: Marco Beinbrech Date: Thu, 6 Aug 2015 11:26:34 +0200 Subject: [PATCH] fixed array [] --- tests/Message/PurchaseResponseTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Message/PurchaseResponseTest.php b/tests/Message/PurchaseResponseTest.php index df8a629..b51e5b5 100644 --- a/tests/Message/PurchaseResponseTest.php +++ b/tests/Message/PurchaseResponseTest.php @@ -18,10 +18,10 @@ public function testPurchaseSuccess() $this->assertSame('GET', $response->getRedirectMethod()); - $expected = [ + $expected = array( 'id' => 'pay_tok_5a010daa-4a30-4171-a8e9-8ae0c6de1c68', 'liveMode' => true - ]; + ); $this->assertSame($expected, $response->getRedirectData()); $this->assertSame('placeholder', $response->getRedirectUrl());