Skip to content

Commit fcc1b29

Browse files
author
black-isort-bot
committed
linting: black/isort
1 parent 0f8b920 commit fcc1b29

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

tests/functional/scenario/test_tools.py

+16-13
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,19 @@
77

88
def test_filling_pdf_escape_pdf_form(tool_pdf_directory):
99
with open(os.path.join(tool_pdf_directory, "pdf_escape_expected.pdf"), "rb+") as f:
10-
assert PyPDFForm2(
11-
os.path.join(tool_pdf_directory, "pdf_escape.pdf")
12-
).fill(
13-
{
14-
"test_1": "test_1",
15-
"test_2": "test_2",
16-
"test_3": "test_3",
17-
"check_1": True,
18-
"check_2": True,
19-
"check_3": True,
20-
"radio_1": 2,
21-
}
22-
).read() == f.read()
10+
assert (
11+
PyPDFForm2(os.path.join(tool_pdf_directory, "pdf_escape.pdf"))
12+
.fill(
13+
{
14+
"test_1": "test_1",
15+
"test_2": "test_2",
16+
"test_3": "test_3",
17+
"check_1": True,
18+
"check_2": True,
19+
"check_3": True,
20+
"radio_1": 2,
21+
}
22+
)
23+
.read()
24+
== f.read()
25+
)

0 commit comments

Comments
 (0)