File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/codec/digest Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ public void testMd2HexLength() {
133133 * An MD5 hash converted to hex should always be 32 characters.
134134 */
135135 @ Test
136- public void testMD5HexLength () {
136+ public void testMd5HexLength () {
137137 String hashMe = "this is some string that is longer than 32 characters" ;
138138 String hash = DigestUtils .md5Hex (getBytesUtf8 (hashMe ));
139139 assertEquals (32 , hash .length ());
@@ -161,7 +161,7 @@ public void testMd2Length() {
161161 * An MD5 hash should always be a 16 element byte[].
162162 */
163163 @ Test
164- public void testMD5Length () {
164+ public void testMd5Length () {
165165 String hashMe = "this is some string that is longer than 16 characters" ;
166166 byte [] hash = DigestUtils .md5 (getBytesUtf8 (hashMe ));
167167 assertEquals (16 , hash .length );
You can’t perform that action at this time.
0 commit comments