Skip to content

Commit 199019d

Browse files
committed
Fix method name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1637835 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0929762 commit 199019d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/codec/binary/HexTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public void testDecodeStringOddCharacters() {
243243
}
244244

245245
@Test
246-
public void testDencodeEmpty() throws DecoderException {
246+
public void testDecodeEmpty() throws DecoderException {
247247
assertTrue(Arrays.equals(new byte[0], Hex.decodeHex(new char[0])));
248248
assertTrue(Arrays.equals(new byte[0], new Hex().decode(new byte[0])));
249249
assertTrue(Arrays.equals(new byte[0], (byte[]) new Hex().decode("")));

0 commit comments

Comments
 (0)