about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pypandoc/new-pandoc-headings.patch
blob: 6716bf57d1bb8c50740fcb0f6a25a5111f24ed8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/tests.py b/tests.py
index aede281..c400888 100755
--- a/tests.py
+++ b/tests.py
@@ -295,7 +295,7 @@ class TestPypandoc(unittest.TestCase):
 
     def test_unicode_input(self):
         # make sure that pandoc always returns unicode and does not mishandle it
-        expected = u'üäöîôû{0}======{0}{0}'.format(os.linesep)
+        expected = u'# üäöîôû'.format(os.linesep)
         written = pypandoc.convert_text(u'<h1>üäöîôû</h1>', 'md', format='html')
         self.assertTrue(isinstance(written, unicode_type))
         self.assertEqualExceptForNewlineEnd(expected, written)
@@ -305,7 +305,7 @@ class TestPypandoc(unittest.TestCase):
         self.assertTrue(isinstance(written, unicode_type))
 
         # Only use german umlauts in th next test, as iso-8859-15 covers that
-        expected = u'üäö€{0}===={0}{0}'.format(os.linesep)
+        expected = u'# üäö€'.format(os.linesep)
         bytes = u'<h1>üäö€</h1>'.encode("iso-8859-15")
 
         # Without encoding, this fails as we expect utf-8 per default