X-Git-Url: http://git.scottworley.com/paperdoorknob/blobdiff_plain/386218397a4723129b31e3954bb960da61f72474..929db57622c6b8756ed341d7ae2862126a7c638f:/paperdoorknob_test.py diff --git a/paperdoorknob_test.py b/paperdoorknob_test.py index 425d5e3..14f6dd9 100644 --- a/paperdoorknob_test.py +++ b/paperdoorknob_test.py @@ -46,6 +46,7 @@ class BaseTestProcess(ABC): spec = Spec( self.url(), self.fetcher(), + lambda x: x, PandocTexifier('pandoc'), buf) paperdoorknob.process(spec) @@ -61,7 +62,7 @@ Pretty sure. texifier = VerifyingTexifier( PandocTexifier('pandoc'), DirectTexifier()) buf = io.BytesIO() - spec = Spec(self.url(), self.fetcher(), texifier, buf) + spec = Spec(self.url(), self.fetcher(), lambda x: x, texifier, buf) paperdoorknob.process(spec) def testPDF(self) -> None: @@ -69,6 +70,7 @@ Pretty sure. spec = Spec( self.url(), self.fetcher(), + lambda x: x, PandocTexifier('pandoc'), out) paperdoorknob.process(spec)