@@ -134,19 +134,25 @@ class ListenNotifyCaseContext:
134134ASYNC_EVENTS_PARAMS = tuple (pytest .param (case , id = case .id , marks = case .marks ) for case in ASYNC_EVENTS_CASES )
135135
136136SYNC_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
140142ASYNC_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