We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f8b920 commit fcc1b29Copy full SHA for fcc1b29
tests/functional/scenario/test_tools.py
@@ -7,16 +7,19 @@
7
8
def test_filling_pdf_escape_pdf_form(tool_pdf_directory):
9
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()
+ assert (
+ PyPDFForm2(os.path.join(tool_pdf_directory, "pdf_escape.pdf"))
+ .fill(
+ {
+ "test_1": "test_1",
+ "test_2": "test_2",
+ "test_3": "test_3",
+ "check_1": True,
+ "check_2": True,
+ "check_3": True,
+ "radio_1": 2,
+ }
+ )
23
+ .read()
24
+ == f.read()
25
0 commit comments