Skip to content

Commit 3eecd54

Browse files
author
Victoria Hall
committed
name typo
1 parent 64760fb commit 3eecd54

File tree

1 file changed

+3
-3
lines changed
  • tests/extension_tests/deferred_bindings_tests/deferred_bindings_blob_functions

1 file changed

+3
-3
lines changed

tests/extension_tests/deferred_bindings_tests/deferred_bindings_blob_functions/function_app.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,13 @@ def put_blob_bytes(req: func.HttpRequest, file: func.Out[bytes]) -> str:
250250

251251

252252
@app.function_name(name="blob_cache")
253-
@app.blob_input(arg_name="client",
253+
@app.blob_input(arg_name="cachedClient",
254254
path="python-worker-tests/test-blobclient-triggered.txt",
255255
connection="AzureWebJobsStorage")
256256
@app.route(route="blob_cache")
257257
def blob_cache(req: func.HttpRequest,
258-
cached_client: blob.BlobClient) -> str:
259-
return cached_client.download_blob(encoding='utf-8').readall()
258+
cachedClient: blob.BlobClient) -> str:
259+
return cachedClient.download_blob(encoding='utf-8').readall()
260260

261261

262262
@app.function_name(name="invalid_connection_info")

0 commit comments

Comments
 (0)