Skip to content

Commit 28abd08

Browse files
[Storage] Fix Blob test_helpers.py (#42712)
1 parent 219b3c1 commit 28abd08

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/storage/azure-storage-blob/tests/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _create_file_share_oauth(
3333
bearer_token_string: str,
3434
storage_account_name: str,
3535
data: bytes,
36-
is_live=False
36+
is_live: bool
3737
) -> Tuple[str, str]:
3838
base_url = f"https://{storage_account_name}.file.core.windows.net/{share_name}"
3939

sdk/storage/azure-storage-blob/tests/test_helpers_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async def _create_file_share_oauth(
3535
bearer_token_string: str,
3636
storage_account_name: str,
3737
data: bytes,
38-
is_live=False
38+
is_live: bool
3939
) -> Tuple[str, str]:
4040
base_url = f"https://{storage_account_name}.file.core.windows.net/{share_name}"
4141

0 commit comments

Comments
 (0)