]> granicus.if.org Git - php/commitdiff
Fix tests to use proper casing
authorAnthony Ferrara <ircmaxell@gmail.com>
Tue, 12 Jun 2012 18:52:43 +0000 (14:52 -0400)
committerAnthony Ferrara <ircmaxell@gmail.com>
Tue, 12 Jun 2012 18:52:43 +0000 (14:52 -0400)
ext/hash/tests/hash_pbkdf2_error.phpt

index 6b827da30d25ec1b9c80a09f789a492f234427ce..fd70cca581ea8a6e259110fa46d21b202b575d86 100644 (file)
@@ -67,12 +67,12 @@ hash_pbkdf2(): Unknown hashing algorithm: foo
 
 -- Testing hash_pbkdf2() function with invalid iterations --
 bool(false)
-hash_pbkdf2(): Iterations Must Be A Positive Integer: 0
+hash_pbkdf2(): Iterations must be a positive integer: 0
 bool(false)
-hash_pbkdf2(): Iterations Must Be A Positive Integer: -1
+hash_pbkdf2(): Iterations must be a positive integer: -1
 
 -- Testing hash_pbkdf2() function with invalid length --
 bool(false)
-hash_pbkdf2(): Length Must Be Greater Than Or Equal To 0: -1
+hash_pbkdf2(): Length must be greater than or equal to 0: -1
 
 ===Done===