Skip to content

Commit 1e78280

Browse files
committed
fix: format integration test file with ruff
- Fixed formatting in tests/integration/test_direct_api_integration.py - Maintains consistency with project formatting standards - All 154 unit tests pass after rebase on main Resolves formatting issues after rebasing on latest main branch.
1 parent 45ba414 commit 1e78280

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/integration/test_direct_api_integration.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,7 @@ def test_merge_pdfs_with_output_file(self, client, sample_pdf_path, tmp_path):
232232

233233
shutil.copy2(sample_pdf_path, second_pdf_path)
234234

235-
result = client.merge_pdfs(
236-
[sample_pdf_path, second_pdf_path], output_path=output_path
237-
)
235+
result = client.merge_pdfs([sample_pdf_path, second_pdf_path], output_path=output_path)
238236

239237
assert result is None
240238
assert (tmp_path / "merged.pdf").exists()
@@ -586,4 +584,3 @@ def test_set_page_label_invalid_label_config_error(self, client, sample_pdf_path
586584
# Invalid pages format
587585
with pytest.raises(ValueError, match="'pages' must be a dict with 'start' key"):
588586
client.set_page_label(sample_pdf_path, labels=[{"pages": "invalid", "label": "test"}])
589-

0 commit comments

Comments
 (0)