From: Alex Dowad Date: Wed, 24 Jun 2020 11:11:56 +0000 (+0200) Subject: Fix typos in test cases for crypt_sha{256,512} X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e94afec7007dcd3557a40b020f6f184fa2338cdf;p=php Fix typos in test cases for crypt_sha{256,512} --- diff --git a/ext/standard/tests/strings/crypt_sha256.phpt b/ext/standard/tests/strings/crypt_sha256.phpt index 0783d8f54b..095e8f1691 100644 --- a/ext/standard/tests/strings/crypt_sha256.phpt +++ b/ext/standard/tests/strings/crypt_sha256.phpt @@ -41,12 +41,12 @@ $tests = array( ), 8 => array( '$5$rounds=10$roundstoolow', - 'the number of rouns is too low', + 'the number of rounds is too low', '*0' ), 9 => array( '$5$rounds=1000000000$roundstoohigh', - 'the number of rouns is too high', + 'the number of rounds is too high', '*0' ) ); diff --git a/ext/standard/tests/strings/crypt_sha512.phpt b/ext/standard/tests/strings/crypt_sha512.phpt index 649e529119..774317776b 100644 --- a/ext/standard/tests/strings/crypt_sha512.phpt +++ b/ext/standard/tests/strings/crypt_sha512.phpt @@ -41,12 +41,12 @@ $tests = array( ), 8 => array( '$6$rounds=10$roundstoolow', - 'the number of rouns is too low', + 'the number of rounds is too low', '*0' ), 8 => array( '$6$rounds=1000000000$roundstoohigh', - 'the number of rouns is too high', + 'the number of rounds is too high', '*0' ), );