Skip to content

Commit e94afec

Browse files
committed
Fix typos in test cases for crypt_sha{256,512}
1 parent b5c7a83 commit e94afec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ext/standard/tests/strings/crypt_sha256.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ $tests = array(
4141
),
4242
8 => array(
4343
'$5$rounds=10$roundstoolow',
44-
'the number of rouns is too low',
44+
'the number of rounds is too low',
4545
'*0'
4646
),
4747
9 => array(
4848
'$5$rounds=1000000000$roundstoohigh',
49-
'the number of rouns is too high',
49+
'the number of rounds is too high',
5050
'*0'
5151
)
5252
);

ext/standard/tests/strings/crypt_sha512.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ $tests = array(
4141
),
4242
8 => array(
4343
'$6$rounds=10$roundstoolow',
44-
'the number of rouns is too low',
44+
'the number of rounds is too low',
4545
'*0'
4646
),
4747
8 => array(
4848
'$6$rounds=1000000000$roundstoohigh',
49-
'the number of rouns is too high',
49+
'the number of rounds is too high',
5050
'*0'
5151
),
5252
);

0 commit comments

Comments
 (0)