We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44fbf75 commit deeb0f1Copy full SHA for deeb0f1
services/web/server/tests/unit/with_dbs/04/licenses/conftest.py
@@ -5,6 +5,7 @@
5
# pylint:disable=redefined-outer-name
6
import pytest
7
from aiohttp.test_utils import TestClient
8
+from simcore_postgres_database.models.license_goods import license_goods
9
from simcore_postgres_database.models.resource_tracker_pricing_plans import (
10
resource_tracker_pricing_plans,
11
)
@@ -39,4 +40,5 @@ async def pricing_plan_id(
39
40
yield int(row[0])
41
42
async with transaction_context(get_asyncpg_engine(client.app)) as conn:
- result = await conn.execute(resource_tracker_pricing_plans.delete())
43
+ await conn.execute(license_goods.delete())
44
+ await conn.execute(resource_tracker_pricing_plans.delete())
0 commit comments