Skip to content

Commit eeb332d

Browse files
committed
fix syntax error
1 parent f43b508 commit eeb332d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/MCryptCompatTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public function testAESBasicSuccess()
2525

2626
$ciphertext = $mcrypt;
2727

28-
$mcrypt = bin2hex(mcrypt_decrypt('rijndael-128', $key, $ciphertext, 'cbc', $iv);
29-
$compat = bin2hex(phpseclib_mcrypt_decrypt('rijndael-128', $key, $ciphertext, 'cbc', $iv);
28+
$mcrypt = bin2hex(mcrypt_decrypt('rijndael-128', $key, $ciphertext, 'cbc', $iv));
29+
$compat = bin2hex(phpseclib_mcrypt_decrypt('rijndael-128', $key, $ciphertext, 'cbc', $iv));
3030
$this->assertEquals($mcrypt, $compat);
3131

3232
$decrypted = $mcrypt;

0 commit comments

Comments
 (0)