Skip to content

Commit e26984c

Browse files
committed
test(events): restore native contract fixture wiring
1 parent b3437a0 commit e26984c

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

tests/integration/adapters/contracts/_events_cases.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,19 +134,25 @@ class ListenNotifyCaseContext:
134134
ASYNC_EVENTS_PARAMS = tuple(pytest.param(case, id=case.id, marks=case.marks) for case in ASYNC_EVENTS_CASES)
135135

136136
SYNC_LISTEN_NOTIFY_CASES = (
137-
ListenNotifyCase("psycopg-sync", "notify_config_psycopg_sync", "psycopg", "sync", marks=(POSTGRES_XDIST_MARK,)),
137+
ListenNotifyCase(
138+
"psycopg-sync", "listen_notify_config_psycopg_sync", "psycopg", "sync", marks=(POSTGRES_XDIST_MARK,)
139+
),
138140
)
139141

140142
ASYNC_LISTEN_NOTIFY_CASES = (
141143
ListenNotifyCase(
142-
"asyncpg-async", "notify_config_asyncpg", "asyncpg", "async", marks=(POSTGRES_XDIST_MARK, pytest.mark.anyio)
144+
"asyncpg-async",
145+
"listen_notify_config_asyncpg",
146+
"asyncpg",
147+
"async",
148+
marks=(POSTGRES_XDIST_MARK, pytest.mark.anyio),
143149
),
144150
ListenNotifyCase(
145-
"psqlpy-async", "notify_config_psqlpy", "psqlpy", "async", marks=(POSTGRES_XDIST_MARK, pytest.mark.anyio)
151+
"psqlpy-async", "listen_notify_config_psqlpy", "psqlpy", "async", marks=(POSTGRES_XDIST_MARK, pytest.mark.anyio)
146152
),
147153
ListenNotifyCase(
148154
"psycopg-async",
149-
"notify_config_psycopg_async",
155+
"listen_notify_config_psycopg_async",
150156
"psycopg",
151157
"async",
152158
marks=(POSTGRES_XDIST_MARK, pytest.mark.anyio),

0 commit comments

Comments
 (0)