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