Fix typos in test cases for crypt_sha{256,512}

This commit is contained in:
Alex Dowad 2020-06-24 13:11:56 +02:00
parent b5c7a83dca
commit e94afec700
2 changed files with 4 additions and 4 deletions

View 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'
)
);

View 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'
),
);