Skip to content

Commit 009101f

Browse files
committed
lint
1 parent 551c091 commit 009101f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/X25519HandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
$encrypted = $this->handler->encrypt('Original message');
187187

188188
// Corrupt the payload by modifying the tag
189-
$corrupted = substr($encrypted, 0, 44) . 'X' . substr($encrypted, 45);
189+
$corrupted = substr($encrypted, 0, 44).'X'.substr($encrypted, 45);
190190

191191
$this->handler->decrypt($corrupted);
192192
})->throws(\RuntimeException::class, 'authentication tag mismatch');

0 commit comments

Comments
 (0)