From e38f19a829862cf2880d27efaf431c875eb355e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Neuh=C3=A4user?= Date: Wed, 1 Dec 2010 23:13:31 +0100 Subject: [PATCH] "Fixed" the CombinedHTMLDiff test The output should probably be validated but I just wanted to make sure it runs without an Exception first --- tests/test_websupport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_websupport.py b/tests/test_websupport.py index 84d6f9e0f..c09334361 100644 --- a/tests/test_websupport.py +++ b/tests/test_websupport.py @@ -271,9 +271,9 @@ def test_moderation(support): def test_differ(): - differ = CombinedHtmlDiff() source = 'Lorem ipsum dolor sit amet,\nconsectetur adipisicing elit,\n' \ 'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' prop = 'Lorem dolor sit amet,\nconsectetur nihil adipisicing elit,\n' \ 'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' - differ.make_html(source, prop) + differ = CombinedHtmlDiff(source, prop) + differ.make_html()