Fix bug of testCharacterTableIsPresent (dicttool test)

Bug:17097992
Change-Id: Ibe343b8cc704631e84ed9d3a39feee30a54bdc38
diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
index 215c9dd..df13737 100644
--- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
+++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
@@ -307,7 +307,7 @@
     public void testCharacterTableIsPresent() throws IOException, UnsupportedFormatException {
         final String[] wordSource = {"words", "used", "for", "testing", "a", "code point", "table"};
         final List<String> words = Arrays.asList(wordSource);
-        final String correctCodePointTable = "eotdsanirfg bclwup";
+        final String correctCodePointTable = "toesdrniawuplgfcb ";
         final String dictName = "codePointTableTest";
         final String dictVersion = Long.toString(System.currentTimeMillis());
         final String codePointTableAttribute = DictionaryHeader.CODE_POINT_TABLE_KEY;