Skip to content

Commit abdb2d4

Browse files
committed
cleanup
1 parent ea28c74 commit abdb2d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/pytest-simcore/src/pytest_simcore/simcore_storage_data_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from sqlalchemy.dialects.postgresql import insert as pg_insert
1919
from sqlalchemy.ext.asyncio import AsyncConnection, AsyncEngine
2020

21-
from .helpers.faker_factories import random_project, random_user
21+
from .helpers.faker_factories import DEFAULT_FAKER, random_project, random_user
2222

2323

2424
@asynccontextmanager
@@ -71,7 +71,7 @@ async def _creator(**kwargs) -> dict[str, Any]:
7171
async with sqlalchemy_async_engine.begin() as conn:
7272
result = await conn.execute(
7373
projects.insert()
74-
.values(**random_project(**prj_config))
74+
.values(**random_project(DEFAULT_FAKER, **prj_config))
7575
.returning(sa.literal_column("*"))
7676
)
7777
row = result.one()

0 commit comments

Comments
 (0)