You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/11/10 14:39:35 UTC

svn commit: r1637846 - /commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java

Author: ggregory
Date: Mon Nov 10 13:39:34 2014
New Revision: 1637846

URL: http://svn.apache.org/r1637846
Log:
Better test method names.

Modified:
    commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java

Modified: commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java?rev=1637846&r1=1637845&r2=1637846&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java (original)
+++ commons/proper/codec/trunk/src/test/java/org/apache/commons/codec/binary/HexTest.java Mon Nov 10 13:39:34 2014
@@ -233,7 +233,7 @@ public class HexTest {
     }
 
     @Test
-    public void testDecodeStringOddCharacters() {
+    public void testDecodeHexStringOddCharacters() {
         try {
             new Hex().decode("6");
             fail("An exception wasn't thrown when trying to decode an odd number of characters");