diff src/test/test_plugin_misc_text_syntaxes.py @ 1812:160b0d4c6520

plugin XEP-0071, XEP-0277: method clean_xhtml has been renamed to cleanXHTML
author souliane <souliane@mailoo.org>
date Tue, 19 Jan 2016 11:51:07 +0100
parents 821c77574ad9
children 55440ee00905
line wrap: on
line diff
--- a/src/test/test_plugin_misc_text_syntaxes.py	Tue Jan 19 11:49:25 2016 +0100
+++ b/src/test/test_plugin_misc_text_syntaxes.py	Tue Jan 19 11:51:07 2016 +0100
@@ -76,14 +76,14 @@
     </img></body>
    </div>"""
 
-        d = self.text_syntaxes.clean_xhtml(self.EVIL_HTML1)
+        d = self.text_syntaxes.cleanXHTML(self.EVIL_HTML1)
         d.addCallback(self.assertEqualXML, expected, ignore_blank=True)
         return d
 
     def test_styles_sanitise(self):
         expected = u"""<p style="color: blue">test <strong>retest</strong><br/><span style="color: #cf2828; font-size: 3px; color: red; color: red !important; font-size: 100px       !important; font-size: 100%; font-size: 100px; font-size: 100; font-size: 100 %; color: rgba(0, 0, 0, 0.1); color: rgb(35,79,255); background-color: no-repeat"> toto </span></p>"""
 
-        d = self.text_syntaxes.clean_xhtml(self.EVIL_HTML2)
+        d = self.text_syntaxes.cleanXHTML(self.EVIL_HTML2)
         d.addCallback(self.assertEqualXML, expected)
         return d