X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/cba76114f031d47c93e1af947a350230cbef0a1f..f4fdb08e0b0ff0da9faed1ac5d89a1523cad7271:/tests/test_pdf.py diff --git a/tests/test_pdf.py b/tests/test_pdf.py index 75b73bc..5b2dba1 100644 --- a/tests/test_pdf.py +++ b/tests/test_pdf.py @@ -3,7 +3,6 @@ # This file is part of Librarian, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -import re from tempfile import NamedTemporaryFile from nose.tools import * from librarian import DirDocProvider @@ -22,7 +21,5 @@ def test_transform(): print tex # Check contributor list. - editors = re.search(ur'\\def\\editors\{' - ur'Opracowanie redakcyjne i przypisy: ([^}]*?)\.\s*\}', tex) - assert_equal(editors.group(1), - u"Adam Fikcyjny, Aleksandra Sekuła, Olga Sutkowska") + editors = re.search(ur'\\def\\editors\{Opracowanie redakcyjne i przypisy: ([^}]*?)\.\s*\}', tex) + assert_equal(editors.group(1), u"Adam Fikcyjny, Aleksandra Sekuła, Olga Sutkowska")