summaryrefslogtreecommitdiffstats
path: root/askbot/tests/post_model_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/tests/post_model_tests.py')
-rw-r--r--askbot/tests/post_model_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/tests/post_model_tests.py b/askbot/tests/post_model_tests.py
index dd1399c1..9a4d47c8 100644
--- a/askbot/tests/post_model_tests.py
+++ b/askbot/tests/post_model_tests.py
@@ -344,7 +344,7 @@ class ThreadRenderLowLevelCachingTests(AskbotTestCase):
# Make sure that title and body text are escaped properly.
# This should be obvious at this point, if the above test passes, but why not be explicit
# UPDATE: And voila, these tests catched double-escaping bug in template, where `<` was `<`
- # And indeed, post.summary is escaped before saving, in parse_and_save_post()
+ # And indeed, post.summary is escaped before saving, in parse_and_save()
# UPDATE 2:Weird things happen with question summary (it's double escaped etc., really weird) so
# let's just make sure that there are no tag placeholders left
self.assertTrue('<<<tag1>>> fake title' in proper_html)