From 5fd81cff55b2c4f7baf2008c70f760fe05d8197d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Mon, 28 Dec 2020 16:51:33 -0400 Subject: [PATCH] ChaCha20 testsuite: tfix (missing quote) --- tests/Unit/Crypt/ChaCha20.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Crypt/ChaCha20.php b/tests/Unit/Crypt/ChaCha20.php index efc17870..4b2fc68f 100644 --- a/tests/Unit/Crypt/ChaCha20.php +++ b/tests/Unit/Crypt/ChaCha20.php @@ -25,7 +25,7 @@ class Unit_Crypt_ChaCha20Test extends PhpseclibTestCase $expected = str_replace(' ', '', $expected); $expected = pack('H*', $expected); - $engines = ['PHP', OpenSSL', 'libsodium']; + $engines = ['PHP', 'OpenSSL', 'libsodium']; for ($engines as $engine) { $c = new ChaCha20(); $c->setKey($key);