Shorten debug annotations for predicted candidates (part 2)

Fix test breakage in r451 by updating test expectation.

BUG=none
TEST=unittest

git-svn-id: https://mozc.googlecode.com/svn/trunk@452 a6090854-d499-a067-5803-1114d4e51264
diff --git a/src/mozc_version_template.txt b/src/mozc_version_template.txt
index 47b246d..a8bf08c 100644
--- a/src/mozc_version_template.txt
+++ b/src/mozc_version_template.txt
@@ -1,6 +1,6 @@
 MAJOR=2
 MINOR=16
-BUILD=1991
+BUILD=1992
 REVISION=102
 # NACL_DICTIONARY_VERSION is the target version of the system dictionary to be
 # downloaded by NaCl Mozc.
diff --git a/src/prediction/dictionary_predictor_test.cc b/src/prediction/dictionary_predictor_test.cc
index 5aa83ed..338eb5b 100644
--- a/src/prediction/dictionary_predictor_test.cc
+++ b/src/prediction/dictionary_predictor_test.cc
@@ -3051,7 +3051,7 @@
         TestableDictionaryPredictor::UNIGRAM |
         TestableDictionaryPredictor::ENGLISH;
     DictionaryPredictor::SetDebugDescription(types, &description);
-    EXPECT_EQ("Unigram English", description);
+    EXPECT_EQ("UE", description);
   }
   {
     string description = "description";
@@ -3059,7 +3059,7 @@
         TestableDictionaryPredictor::REALTIME |
         TestableDictionaryPredictor::BIGRAM;
     DictionaryPredictor::SetDebugDescription(types, &description);
-    EXPECT_EQ("description Bigram Realtime", description);
+    EXPECT_EQ("description BR", description);
   }
   {
     string description;
@@ -3068,7 +3068,7 @@
         TestableDictionaryPredictor::REALTIME |
         TestableDictionaryPredictor::SUFFIX;
     DictionaryPredictor::SetDebugDescription(types, &description);
-    EXPECT_EQ("Bigram Realtime Suffix", description);
+    EXPECT_EQ("BRS", description);
   }
 }