Skip to content

Commit

Permalink
Fixed test issue introduced in the last release
Browse files Browse the repository at this point in the history
  • Loading branch information
tfountain committed May 5, 2016
1 parent f159653 commit 6378c8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Api/BaseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ abstract class BaseClient
* @var array
*/
protected $httpClientConfig = array(
'useragent' => 'Dyn PHP SDK v0.7.0',
'useragent' => 'Dyn PHP SDK v0.7.1',
'maxredirects' => 5,
'timeout' => 300
);
Expand Down
1 change: 1 addition & 0 deletions test/DynTest/MessageManagementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public function testCustomHttpClientArrayConfigurationCanBeUsed()
$httpConfig = array(
'adapter' => 'Zend\Http\Client\Adapter\Test',
'useragent' => 'Dyn Custom array configured Http Client',
'timeout' => 30
);
$mm = new MessageManagement('xxxxxxxxxxxx', $httpConfig);

Expand Down
1 change: 1 addition & 0 deletions test/DynTest/TrafficManagementTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ public function testCustomHttpClientArrayConfigurationCanBeUsed()
$config = array(
'adapter' => 'Zend\Http\Client\Adapter\Test',
'useragent' => 'Dyn Custom array configured Http Client',
'timeout' => 30
);
$tm = new TrafficManagement('testcustomer', 'testusername', 'testpassword', $config);

Expand Down

0 comments on commit 6378c8b

Please sign in to comment.