PROTON-1836 Fix test name typo
diff --git a/proton-j/src/test/java/org/apache/qpid/proton/codec/StringTypeTest.java b/proton-j/src/test/java/org/apache/qpid/proton/codec/StringTypeTest.java
index 320bd54..944a0f2 100644
--- a/proton-j/src/test/java/org/apache/qpid/proton/codec/StringTypeTest.java
+++ b/proton-j/src/test/java/org/apache/qpid/proton/codec/StringTypeTest.java
@@ -177,16 +177,16 @@
     }
 
     @Test
-    public void testEmptyShortStringEncod() {
-        doTestEmptyStringEncodAsGivenType(EncodingCodes.STR8);
+    public void testEmptyShortStringEncode() {
+        doTestEmptyStringEncodeAsGivenType(EncodingCodes.STR8);
     }
 
     @Test
-    public void testEmptyLargeStringEncod() {
-        doTestEmptyStringEncodAsGivenType(EncodingCodes.STR32);
+    public void testEmptyLargeStringEncode() {
+        doTestEmptyStringEncodeAsGivenType(EncodingCodes.STR32);
     }
 
-    public void doTestEmptyStringEncodAsGivenType(byte encodingCode) {
+    public void doTestEmptyStringEncodeAsGivenType(byte encodingCode) {
         final DecoderImpl decoder = new DecoderImpl();
         final EncoderImpl encoder = new EncoderImpl(decoder);
         AMQPDefinedTypes.registerAllTypes(decoder, encoder);