From 643cd0efafe13a8ce41cf392e42c14edb93599c3 Mon Sep 17 00:00:00 2001
From: ansable <anchous12@gmail.com>
Date: Tue, 18 Jun 2019 12:53:07 +0200
Subject: [PATCH] seed planted directly to the problematic test

---
 test/test_text.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/test_text.py b/test/test_text.py
index 2e57e102..8faaeb20 100644
--- a/test/test_text.py
+++ b/test/test_text.py
@@ -21,7 +21,7 @@
 
 from pattern import text
 from random import seed
-seed(0)
+
 #---------------------------------------------------------------------------------------------------
 
 
@@ -93,6 +93,7 @@ def setUp(self):
     def test_model(self):
 
         # Assert SLP language model.
+        seed(0)
         v = text.Model()
         for i in range(2):
             v.train("black", "JJ", previous=("the", "DT"), next=("cat", "NN"))
