Navigation Menu

Skip to content

Commit

Permalink
Fixing PHP 5.3 array syntax for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed May 26, 2015
1 parent c9429f6 commit 399c2f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Aws/Tests/Efs/Integration/IntegrationTest.php
Expand Up @@ -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()
Expand Down

0 comments on commit 399c2f7

Please sign in to comment.