Skip to content

Commit 33b47aa

Browse files
committed
Use camel-case for test method names.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1380023 13f79535-47bb-0310-9956-ffa450edef68
1 parent c45a7d3 commit 33b47aa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/codec/digest/DigestUtilsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)