Skip to content

Commit 2e7305d

Browse files
committed
Run ruff format
1 parent 319ee4a commit 2e7305d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/test_setup_search_service.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def test_upload_sample_data_reads_only_top_level_pictures(
5454
(nested_dir / "image2.jpg").write_bytes(b"nested")
5555

5656
monkeypatch.chdir(tmp_path)
57-
monkeypatch.setenv("AZURE_STORAGE_ACCOUNT_BLOB_URL", "https://example.blob.core.windows.net")
57+
monkeypatch.setenv(
58+
"AZURE_STORAGE_ACCOUNT_BLOB_URL", "https://example.blob.core.windows.net"
59+
)
5860
monkeypatch.setattr(
5961
setup_search_service, "BlobServiceClient", FakeBlobServiceClient
6062
)
@@ -65,4 +67,4 @@ def test_upload_sample_data_reads_only_top_level_pictures(
6567
setup_search_service.upload_sample_data(credential=object())
6668

6769
assert fake_container_client.created_public_access == "blob"
68-
assert fake_container_client.uploaded_blobs == ["image1.jpg"]
70+
assert fake_container_client.uploaded_blobs == ["image1.jpg"]

0 commit comments

Comments
 (0)