Repository: cxf Updated Branches: refs/heads/master a10b113d9 -> 7454e5a34
[CXF-5823] Fixing a typo in the test name Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7454e5a3 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7454e5a3 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7454e5a3 Branch: refs/heads/master Commit: 7454e5a34be4e0d8770d917defa6c11c78ca460a Parents: a10b113 Author: Sergey Beryozkin <[email protected]> Authored: Wed Jun 25 16:48:29 2014 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Wed Jun 25 16:48:29 2014 +0100 ---------------------------------------------------------------------- .../test/java/org/apache/cxf/common/util/Base64UtilityTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7454e5a3/core/src/test/java/org/apache/cxf/common/util/Base64UtilityTest.java ---------------------------------------------------------------------- diff --git a/core/src/test/java/org/apache/cxf/common/util/Base64UtilityTest.java b/core/src/test/java/org/apache/cxf/common/util/Base64UtilityTest.java index fc6cff1..f62e8d8 100644 --- a/core/src/test/java/org/apache/cxf/common/util/Base64UtilityTest.java +++ b/core/src/test/java/org/apache/cxf/common/util/Base64UtilityTest.java @@ -41,7 +41,7 @@ public class Base64UtilityTest extends Assert { } @Test - public void testEncodeMulltipleChunks() throws Exception { + public void testEncodeMultipleChunks() throws Exception { final String text = "The true sign of intelligence is not knowledge but imagination."; byte[] bytes = text.getBytes("UTF-8"); // multiple of 3 octets
