Skip to content

Commit dead487

Browse files
committed
MAGETWO-89082: Update composer dependencies
1 parent df2b36a commit dead487

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

lib/internal/Magento/Framework/Encryption/Test/Unit/CryptTest.php

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,18 @@ public function getConstructorExceptionData()
111111
$tooShortInitVector = str_repeat('-', $this->_getInitVectorSize($cipher, $mode) - 1);
112112
$tooLongInitVector = str_repeat('-', $this->_getInitVectorSize($cipher, $mode) + 1);
113113
$result['tooLongKey-' . $cipher . '-' . $mode . '-false'] = [$tooLongKey, $cipher, $mode, false];
114-
$result['key-' . $cipher . '-' . $mode . '-tooShortInitVector'] = [$this->_key, $cipher, $mode, $tooShortInitVector];
115-
$result['key-' . $cipher . '-' . $mode . '-tooLongInitVector'] = [$this->_key, $cipher, $mode, $tooLongInitVector];
114+
$result['key-' . $cipher . '-' . $mode . '-tooShortInitVector'] = [
115+
$this->_key,
116+
$cipher,
117+
$mode,
118+
$tooShortInitVector
119+
];
120+
$result['key-' . $cipher . '-' . $mode . '-tooLongInitVector'] = [
121+
$this->_key,
122+
$cipher,
123+
$mode,
124+
$tooLongInitVector
125+
];
116126
}
117127
}
118128
return $result;

0 commit comments

Comments
 (0)