summaryrefslogtreecommitdiff
path: root/tests/test_websupport.py
diff options
context:
space:
mode:
authorDaniel Neuhäuser <ich@danielneuhaeuser.de>2010-12-01 23:13:31 +0100
committerDaniel Neuhäuser <ich@danielneuhaeuser.de>2010-12-01 23:13:31 +0100
commite38f19a829862cf2880d27efaf431c875eb355e4 (patch)
treea9acfb811bea49a115aefed2e895b1c71fe8ba20 /tests/test_websupport.py
parentdd955b1f94d404fd45a343de322f3f1175dcb26b (diff)
downloadsphinx-git-e38f19a829862cf2880d27efaf431c875eb355e4.tar.gz
"Fixed" the CombinedHTMLDiff test
The output should probably be validated but I just wanted to make sure it runs without an Exception first
Diffstat (limited to 'tests/test_websupport.py')
-rw-r--r--tests/test_websupport.py4
1 files 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()