You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by lu...@apache.org on 2015/06/08 19:14:51 UTC

[36/50] [abbrv] incubator-kylin git commit: rename dictionary sample file to .dic

rename dictionary sample file to .dic


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/411218f0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/411218f0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/411218f0

Branch: refs/heads/master
Commit: 411218f0eb1cb83f73e42181252e8960d1bcabd2
Parents: 7c3bead
Author: Luke Han <lu...@apache.org>
Authored: Tue Jun 2 20:05:10 2015 +0800
Committer: Luke Han <lu...@apache.org>
Committed: Tue Jun 2 20:05:10 2015 +0800

----------------------------------------------------------------------
 .../apache/kylin/dict/TrieDictionaryTest.java   |      2 +-
 .../english-words.80 (scowl-2015.05.18).dic     | 139304 ++++++++++++++++
 .../english-words.80 (scowl-2015.05.18).txt     | 139304 ----------------
 pom.xml                                         |      3 -
 4 files changed, 139305 insertions(+), 139308 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/411218f0/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
----------------------------------------------------------------------
diff --git a/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java b/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
index 4ad89d5..74f5610 100644
--- a/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
+++ b/dictionary/src/test/java/org/apache/kylin/dict/TrieDictionaryTest.java
@@ -133,7 +133,7 @@ public class TrieDictionaryTest {
 
     @Test
     public void englishWordsTest() throws Exception {
-        InputStream is = new FileInputStream("src/test/resources/dict/english-words.80 (scowl-2015.05.18).txt");
+        InputStream is = new FileInputStream("src/test/resources/dict/english-words.80 (scowl-2015.05.18).dic");
         ArrayList<String> str = loadStrings(is);
         testStringDictionary(str, null);
     }