From 475789937077724c8d47fb7ba16221a1d0409c33 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 16 Apr 2015 04:50:40 +0200 Subject: [PATCH] * Fix times test --- tests/test_times.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_times.py b/tests/test_times.py index b45fb4f7c..88d9db050 100644 --- a/tests/test_times.py +++ b/tests/test_times.py @@ -14,7 +14,7 @@ def test_am_pm(): for var in variants: for space in spaces: string = u"The meeting was at %s%s%s wasn't it?" % (num, space, var) - tokens = NLU(string) + tokens = NLU(string, merge_mwes=True) assert tokens[4].orth_ == '%s%s%s' % (num, space, var) ents = list(tokens.ents) assert len(ents) == 1