Skip to content

Commit 2b92cb8

Browse files
committed
fix test prefix
1 parent 6dde143 commit 2b92cb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stac_fastapi/tests/api/test_api_search_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ async def test_collections_post(app_client, txn_client, ctx):
829829
async def test_collections_search_cql2_text(app_client, txn_client, ctx):
830830
"""Test collections search with CQL2-text filter."""
831831
# Create a unique prefix for test collections
832-
test_prefix = f"test-{uuid.uuid4()}"
832+
test_prefix = f"test-{uuid.uuid4().hex[:8]}"
833833

834834
# Create test collections
835835
collection_data = ctx.collection.copy()

0 commit comments

Comments
 (0)