Skip to content

Commit

Permalink
Fix assuming tests are run from the project root.
Browse files Browse the repository at this point in the history
  • Loading branch information
deviantintegral committed Apr 17, 2015
1 parent 340ba93 commit ed8398a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Expand Up @@ -54,7 +54,7 @@
}

// Instantiate the service builder
$aws = Aws\Common\Aws::factory(isset($_SERVER['CONFIG']) ? $_SERVER['CONFIG'] : 'test_services.dist.json');
$aws = Aws\Common\Aws::factory(isset($_SERVER['CONFIG']) ? $_SERVER['CONFIG'] : (__DIR__) . '/../test_services.dist.json');

// Turn on wire logging if configured
$aws->getEventDispatcher()->addListener('service_builder.create_client', function (\Guzzle\Common\Event $event) {
Expand Down

0 comments on commit ed8398a

Please sign in to comment.