Skip to content

Commit c3c58f2

Browse files
committed
Refix bug introduced in r1304137
(accidentally converted assertFalse to assertEquals) git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1304377 13f79535-47bb-0310-9956-ffa450edef68
1 parent f0ee466 commit c3c58f2

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
@@ -341,7 +341,7 @@ public void testHelloWorldLowerCaseHex() {
341341
actual = Hex.encodeHex(b, true);
342342
assertEquals(expected, new String(actual));
343343
actual = Hex.encodeHex(b, false);
344-
assertEquals(expected.toUpperCase(), new String(actual));
344+
assertFalse(expected.equals(new String(actual)));
345345
}
346346

347347
@Test

0 commit comments

Comments
 (0)