Skip to content

Commit 219d7d7

Browse files
committed
MAGETWO-44931: [HHVM] Tests of different groups failed to start
- fixing integration test
1 parent 0464b72 commit 219d7d7

File tree

1 file changed

+4
-1
lines changed
  • dev/tests/integration/testsuite/Magento/Framework/Session

1 file changed

+4
-1
lines changed

dev/tests/integration/testsuite/Magento/Framework/Session/ConfigTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,11 @@ public function testDefaultConfiguration()
6767
$filesystem = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
6868
'Magento\Framework\Filesystem'
6969
);
70+
$path = ini_get('session.save_path') ?:
71+
$filesystem->getDirectoryRead(DirectoryList::SESSION)->getAbsolutePath();
72+
7073
$this->assertEquals(
71-
$filesystem->getDirectoryRead(DirectoryList::SESSION)->getAbsolutePath(),
74+
$path,
7275
$this->_model->getSavePath()
7376
);
7477
$this->assertEquals(

0 commit comments

Comments
 (0)