Skip to content

Commit 3005e0e

Browse files
committed
MAGETWO-96459: Fix performance on MAGETWO-83832
1 parent e9e8b67 commit 3005e0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup/src/Magento/Setup/Test/Unit/Module/ConfigGeneratorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function testCreateCryptConfigWithoutInput()
6464
{
6565
$returnValue = $this->configGeneratorObject->createCryptConfig([]);
6666
$this->assertEquals(ConfigFilePool::APP_ENV, $returnValue->getFileKey());
67-
$this->assertEquals(['crypt' => ['key' => ('key')]], $returnValue->getData());
67+
$this->assertEquals(['crypt' => ['key' => md5('key')]], $returnValue->getData());
6868
}
6969

7070
public function testCreateSessionConfigWithInput()

0 commit comments

Comments
 (0)