Skip to content

Commit b44382f

Browse files
committed
fmt
1 parent 59fc937 commit b44382f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ Keyword Arguments:
989989
Usage:
990990
```python
991991
def test_storage_credential(env_or_skip, make_storage_credential, make_random):
992-
random = make_random(6).lower()
992+
random = make_random(8).lower()
993993
credential_name = f"dummy-{random}"
994994
make_storage_credential(
995995
credential_name=credential_name,
@@ -1021,7 +1021,7 @@ def test_volume_creation(make_catalog, make_schema, make_volume, make_random):
10211021
schema = make_schema(catalog_name=catalog.name)
10221022

10231023
# Generate a random name for the volume
1024-
volume_name = f"dummy_vol_{make_random(6).lower()}"
1024+
volume_name = f"dummy_vol_{make_random(8).lower()}"
10251025

10261026
# Create the volume
10271027
volume = make_volume(

0 commit comments

Comments
 (0)