Skip to content

Commit 6713746

Browse files
committed
random
1 parent f511ff0 commit 6713746

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/faker_factories.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import itertools
1616
import json
17+
import random
1718
from collections.abc import Callable
1819
from datetime import UTC, datetime, timedelta
1920
from typing import Any, Final
@@ -260,7 +261,7 @@ def random_product(
260261
ui=VendorUI(
261262
logo_url=fake.url(),
262263
strong_color=fake.color(),
263-
project_alias="project",
264+
project_alias=random.choice(["project", "study"]),
264265
),
265266
),
266267
"registration_email_template": registration_email_template,

0 commit comments

Comments
 (0)