Remove some leftover prints

This commit is contained in:
Kovid Goyal 2025-04-07 08:15:40 +05:30
parent 2c3e858d9c
commit 1ebbf424c2
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -242,8 +242,6 @@ def test_podofo():
try: try:
p = podofo.PDFDoc() p = podofo.PDFDoc()
p.open(f.name) p.open(f.name)
print(1111111111111111111)
print(22222222, repr(p.title))
if (p.title, p.author, p.keywords) != ('info title', 'info author', 'a, b'): if (p.title, p.author, p.keywords) != ('info title', 'info author', 'a, b'):
raise ValueError('podofo failed to set title and author in Info dict {} != {}'.format( raise ValueError('podofo failed to set title and author in Info dict {} != {}'.format(
(p.title, p.author, p.keywords), ('info title', 'info author', 'a, b'))) (p.title, p.author, p.keywords), ('info title', 'info author', 'a, b')))