We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316bfd6 commit 123bfd8Copy full SHA for 123bfd8
test/unit/ConfigTest.php
@@ -8,7 +8,11 @@ class ConfigTest_Config extends PHPUnit_Framework_TestCase
8
9
protected function setUp()
10
{
11
- $this->base_path = basename(__DIR__).'../..';
+ if(getenv('TRAVIS') {
12
+ $this->base_path = '/home/travis/build/sendgrid/php-http-client/';
13
+ } else {
14
+ $this->base_path = basename(__DIR__).'../..';
15
+ }
16
$this->config_filename = '.env_sample';
17
$this->config = new SendGrid\Config($this->base_path, $this->config_filename);
18
}
0 commit comments