diff sat/test/test_plugin_misc_text_syntaxes.py @ 2624:56f94936df1e

code style reformatting using black
author Goffi <goffi@goffi.org>
date Wed, 27 Jun 2018 20:14:46 +0200
parents 26edcf3a30eb
children 003b8b4b56a7
line wrap: on
line diff
--- a/sat/test/test_plugin_misc_text_syntaxes.py	Wed Jun 27 07:51:29 2018 +0200
+++ b/sat/test/test_plugin_misc_text_syntaxes.py	Wed Jun 27 20:14:46 2018 +0200
@@ -91,10 +91,14 @@
     def test_html2text(self):
         """Check that html2text is not inserting \n in the middle of that link.
         By default lines are truncated after the 79th characters."""
-        source = "<img src=\"http://sat.goffi.org/static/images/screenshots/libervia/libervia_discussions.png\" alt=\"sat\"/>"
+        source = '<img src="http://sat.goffi.org/static/images/screenshots/libervia/libervia_discussions.png" alt="sat"/>'
         expected = "![sat](http://sat.goffi.org/static/images/screenshots/libervia/libervia_discussions.png)"
         try:
-            d = self.text_syntaxes.convert(source, self.text_syntaxes.SYNTAX_XHTML, self.text_syntaxes.SYNTAX_MARKDOWN)
+            d = self.text_syntaxes.convert(
+                source,
+                self.text_syntaxes.SYNTAX_XHTML,
+                self.text_syntaxes.SYNTAX_MARKDOWN,
+            )
         except plugin_misc_text_syntaxes.UnknownSyntax:
             raise SkipTest("Markdown syntax is not available.")
         d.addCallback(self.assertEqual, expected)
@@ -108,4 +112,3 @@
         expected = u"""test retest toto"""
         result = self.text_syntaxes._removeMarkups(self.EVIL_HTML2)
         self.assertEqual(re.sub(r"\s+", " ", result).rstrip(), expected.rstrip())
-