Skip to content

Commit 71dedd4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1999a28 commit 71dedd4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎tests.py‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,9 @@ def test_conversion_from_non_plain_text_file(self):
621621
self.assertEqualExceptForNewlineEnd(expected, received)
622622

623623
# skip in ci
624-
@unittest.skipIf(os.environ.get("CI") == "true", "Skipping PDF conversion test in CI environment")
624+
@unittest.skipIf(
625+
os.environ.get("CI") == "true", "Skipping PDF conversion test in CI environment"
626+
)
625627
def test_pdf_conversion(self):
626628
with closed_tempfile(".pdf") as file_name:
627629
ret = pypandoc.convert_text(

0 commit comments

Comments
 (0)