From 29f1d21be7597b91c7280f1eb7d376ea72140bcd Mon Sep 17 00:00:00 2001 From: smitcona Date: Mon, 6 Feb 2017 15:03:22 +0000 Subject: [PATCH] fixed expected markers and incorrect condensed header not matching regex --- tests/text_quotations_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/text_quotations_test.py b/tests/text_quotations_test.py index 6a87e9b..622e84f 100644 --- a/tests/text_quotations_test.py +++ b/tests/text_quotations_test.py @@ -713,7 +713,7 @@ def test_split_email(): Hello. - On 24th February 2016 at 09.32am, Conal Wrote: + On 24th February 2016 at 09.32am, Conal wrote: Hey! @@ -742,6 +742,6 @@ def test_split_email(): > > """ - expected_markers = "stttttsttttetetetesmmmmmmssmmmmmmsmmmmmmmm" + expected_markers = "stttttsttttetesetesmmmmmmssmmmmmmsmmmmmmmm" markers = quotations.split_emails(msg) eq_(markers, expected_markers)