From 771b1407055f72e314a0cc2581036fefcce7e177 Mon Sep 17 00:00:00 2001 From: nicofrand Date: Thu, 18 Jan 2018 13:27:22 +0100 Subject: [PATCH] Fix tests --- flatisfy/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flatisfy/tests.py b/flatisfy/tests.py index 0c1ca73..42554a0 100644 --- a/flatisfy/tests.py +++ b/flatisfy/tests.py @@ -62,8 +62,8 @@ class TestTexts(unittest.TestCase): Checks whitespaces are collapsed. """ self.assertEqual( - "avec ascenseur", - tools.normalize_string("avec ascenseur") + "avec ascenseur", + tools.normalize_string("avec ascenseur") ) def test_accents(self): @@ -71,8 +71,8 @@ class TestTexts(unittest.TestCase): Checks accents are replaced. """ self.assertEqual( - "éèêàüï", - tools.normalize_string("eeeaui") + "eeeaui", + tools.normalize_string(u"éèêàüï") ) class TestPhoneNumbers(unittest.TestCase):