summaryrefslogtreecommitdiffstats
path: root/hyperkitty/tests
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-12-13 15:45:39 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-12-13 15:45:39 +0100
commit90d3f91df7851b97f07b903f353497742f80d325 (patch)
tree19c69be5514940878f65799c814e9b44a1384676 /hyperkitty/tests
parenteab3d767b65982e1e04c5538c0d2827f26230fca (diff)
downloadhyperkitty-90d3f91df7851b97f07b903f353497742f80d325.tar.gz
hyperkitty-90d3f91df7851b97f07b903f353497742f80d325.tar.xz
hyperkitty-90d3f91df7851b97f07b903f353497742f80d325.zip
Fix quoting in the message view
Refs: #24
Diffstat (limited to 'hyperkitty/tests')
-rw-r--r--hyperkitty/tests/test_templatetags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/tests/test_templatetags.py b/hyperkitty/tests/test_templatetags.py
index eab0187..f4d9d4d 100644
--- a/hyperkitty/tests/test_templatetags.py
+++ b/hyperkitty/tests/test_templatetags.py
@@ -36,7 +36,7 @@ This is the response.
"""
expected = """
On Fri, 09.11.12 11:27, Someone wrote:
- <div class="quoted-switch"><a href="#">%s</a></div><div class="quoted-text"> This is the first quoted line
+<div class="quoted-switch"><a href="#">%s</a></div><div class="quoted-text"> This is the first quoted line
This is the second quoted line </div>This is the response.
""" % self.quotemsg
result = snip_quoted(contents, self.quotemsg)