From: Scott Worley Date: Thu, 30 Nov 2023 16:29:35 +0000 (-0800) Subject: Verify that LaTeX conversion is doing something X-Git-Url: http://git.scottworley.com/paperdoorknob/commitdiff_plain/afd3c3a13956819ceb32c28875f56cff7df8fe3f?ds=sidebyside Verify that LaTeX conversion is doing something --- diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 7cb73b7..ee4de04 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -39,7 +39,7 @@ class FakeGlowficHTTPRequestHandler(BaseHTTPRequestHandler):
We don't want edit boxes
- You sure? + You sure?
@@ -129,8 +129,9 @@ class TestFetch(unittest.TestCase): TIMEOUT, buf, 'pandoc') - self.assertEqual(buf.getvalue(), - b'This is glowfic\nYou sure?\nPretty sure.\n') + self.assertEqual( + buf.getvalue(), + b'This is glowfic\nYou \\emph{sure}?\nPretty sure.\n') if __name__ == '__main__':