aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_scrub.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_scrub.py')
-rw-r--r--tests/test_scrub.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_scrub.py b/tests/test_scrub.py
index 6c357ae..5929b65 100644
--- a/tests/test_scrub.py
+++ b/tests/test_scrub.py
@@ -1,4 +1,3 @@
-
import pytest
from fatcat_scholar.schema import *
@@ -6,10 +5,12 @@ from fatcat_scholar.schema import *
def test_scrub():
vectors = [
- ('“Please clean this piece… of text</b>„', '"Please clean this piece... of text"'),
+ (
+ "“Please clean this piece… of text</b>„",
+ '"Please clean this piece... of text"',
+ ),
("<jats:p>blah", "blah"),
]
for raw, fixed in vectors:
assert fixed == scrub_text(raw)
-