Skip to content

Commit 12d7a74

Browse files
committed
Make Travis lint happy
1 parent d445f5d commit 12d7a74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_preprocessors.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def test_preprocessor_svg2pdf():
9191
assert_in('test.pdf', body,
9292
'exported pdf should be referenced in exported notebook')
9393

94+
9495
def test_preprocessor_embedigmages():
9596
"""Test python embedimages preprocessor."""
9697
# check import shortcut
@@ -103,9 +104,8 @@ def test_preprocessor_embedigmages():
103104
])
104105
customconfig = Config(EmbedImagesPreprocessor={'embed_images': True})
105106
body, resources = export_through_preprocessor(
106-
notebook_node, EmbedImagesPreprocessor, NotebookExporter, 'ipynb', customconfig)
107+
notebook_node, EmbedImagesPreprocessor, NotebookExporter, 'ipynb',
108+
customconfig)
107109

108110
expected = 'image/png'
109111
assert_in(expected, body, 'Attachment {} is missing'.format(expected))
110-
111-

0 commit comments

Comments
 (0)