From e94afec7007dcd3557a40b020f6f184fa2338cdf Mon Sep 17 00:00:00 2001 From: Alex Dowad Date: Wed, 24 Jun 2020 13:11:56 +0200 Subject: [PATCH] Fix typos in test cases for crypt_sha{256,512} --- ext/standard/tests/strings/crypt_sha256.phpt | 4 ++-- ext/standard/tests/strings/crypt_sha512.phpt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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' ), ); -- 2.50.1