From 8534219d2019a7515fbcbcaaf50d21a8a6c3ce67 Mon Sep 17 00:00:00 2001 From: Prakhar Pratyush Date: Sun, 28 May 2017 13:22:36 +0530 Subject: [PATCH] fixed test for training --- gensim/test/test_fasttext_wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gensim/test/test_fasttext_wrapper.py b/gensim/test/test_fasttext_wrapper.py index 75c37c512d..9fed85d683 100644 --- a/gensim/test/test_fasttext_wrapper.py +++ b/gensim/test/test_fasttext_wrapper.py @@ -54,7 +54,7 @@ def testTraining(self): if self.ft_path is None: logger.info("FT_HOME env variable not set, skipping test") return # Use self.skipTest once python < 2.7 is no longer supported - vocab_size, model_size = 1762, 10 + vocab_size, model_size = 1763, 10 trained_model = fasttext.FastText.train( self.ft_path, self.corpus_file, size=model_size, output_file=testfile())