From 399c2f7e2dcd0b9fc1f8beaccfaabb624ac7316b Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Tue, 26 May 2015 14:41:32 -0700 Subject: [PATCH] Fixing PHP 5.3 array syntax for integration test --- tests/Aws/Tests/Efs/Integration/IntegrationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Aws/Tests/Efs/Integration/IntegrationTest.php b/tests/Aws/Tests/Efs/Integration/IntegrationTest.php index a19a347e79..8632c496bf 100644 --- a/tests/Aws/Tests/Efs/Integration/IntegrationTest.php +++ b/tests/Aws/Tests/Efs/Integration/IntegrationTest.php @@ -14,9 +14,9 @@ class IntegrationTest extends \Aws\Tests\IntegrationTestCase public function setUp() { - $this->client = $this->getServiceBuilder()->get('Efs', [ + $this->client = $this->getServiceBuilder()->get('Efs', array( 'region' => 'us-west-2' - ]); + )); } public function testErrorsAreParsedCorrectly()