From e2578fbb90b04a12f6e533f48ffb953ac12e85b8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sat, 6 Jun 2015 05:59:20 +0200 Subject: [PATCH] * Avoid parsing and tagging in test_emoticons --- tests/test_emoticons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_emoticons.py b/tests/test_emoticons.py index 75b2b1060..2b250a328 100644 --- a/tests/test_emoticons.py +++ b/tests/test_emoticons.py @@ -38,5 +38,5 @@ def test_tweebo_challenge(EN): def test_false_positive(EN): text = "example:)" - tokens = EN(text) + tokens = EN(text, parse=False, tag=False) assert len(tokens) == 3