]> granicus.if.org Git - php/commitdiff
Fix typos in test cases for crypt_sha{256,512}
authorAlex Dowad <alexinbeijing@gmail.com>
Wed, 24 Jun 2020 11:11:56 +0000 (13:11 +0200)
committerAlex Dowad <alexinbeijing@gmail.com>
Wed, 24 Jun 2020 11:37:26 +0000 (13:37 +0200)
ext/standard/tests/strings/crypt_sha256.phpt
ext/standard/tests/strings/crypt_sha512.phpt

index 0783d8f54b69d22afe867e56d43e33d749de5b1b..095e8f16913363dd1147eadd1c626ae0da2a76d7 100644 (file)
@@ -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'
     )
 );
index 649e529119fa8a7457b7ef755f903cf22a4dfbfd..774317776bb27699cf78dfaba61fe88ad827ef3a 100644 (file)
@@ -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'
     ),
 );