Skip to content

Commit

Permalink
Merge pull request #48 from Vantiv/US288193-Concurrent-Tests-Fixes-8.0
Browse files Browse the repository at this point in the history
Fixed temporary directory conflicting with other tests
  • Loading branch information
VantivSDK authored Dec 9, 2019
2 parents 561a711 + 5e8d7fa commit f1be12b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion litle/sdk/Test/functional/BatchRequestFunctionalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class BatchRequestFunctionalTest extends \PHPUnit_Framework_TestCase

public function setUp()
{
$this->direct = sys_get_temp_dir() . '/test';
$this->direct = sys_get_temp_dir() . '/test' . CURRENT_SDK_VERSION;
if (!file_exists($this->direct)) {
mkdir($this->direct);
}
Expand Down
2 changes: 1 addition & 1 deletion litle/sdk/Test/functional/LitleRequestFunctionalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class LitleRequestFunctionalTest extends \PHPUnit_Framework_TestCase

public function setUp()
{
$this->direct = sys_get_temp_dir() . '/test';
$this->direct = sys_get_temp_dir() . '/test' . CURRENT_SDK_VERSION;
if (!file_exists($this->direct)) {
mkdir($this->direct);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LitleResponseProcessorFunctionalTest extends \PHPUnit_Framework_TestCase

public function setUp()
{
$this->direct = sys_get_temp_dir() . '/test';
$this->direct = sys_get_temp_dir() . '/test' . CURRENT_SDK_VERSION;
if (!file_exists($this->direct)) {
mkdir($this->direct);
}
Expand Down

0 comments on commit f1be12b

Please sign in to comment.