Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/tests/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def verify_blobs(self, blobs_list: list[BlobProperties], blob_names: list[str]):
assert blob.etag is not None
assert blob.last_modified is not None and blob.last_modified.tzinfo is not None
assert blob.creation_time is not None and blob.creation_time.tzinfo is not None
assert blob.last_accessed_on is not None and blob.last_accessed_on.tzinfo is not None
assert blob.last_accessed_on is None or blob.last_accessed_on.tzinfo is not None
assert blob.server_encrypted is True
assert blob.blob_tier is not None
assert blob.blob_tier_inferred is not None
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/tests/test_arrow_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def verify_blobs(self, blobs_list: list[BlobProperties], blob_names: list[str]):
assert blob.etag is not None
assert blob.last_modified is not None and blob.last_modified.tzinfo is not None
assert blob.creation_time is not None and blob.creation_time.tzinfo is not None
assert blob.last_accessed_on is not None and blob.last_accessed_on.tzinfo is not None
assert blob.last_accessed_on is None or blob.last_accessed_on.tzinfo is not None
assert blob.server_encrypted is True
assert blob.blob_tier is not None
assert blob.blob_tier_inferred is not None
Expand Down
Loading