Skip to content

Commit 2d2563d

Browse files
committed
Improved test names [skip ci]
1 parent f7eeb3a commit 2d2563d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_sqlalchemy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def test_binary_quantize(self):
492492

493493
@pytest.mark.asyncio
494494
@pytest.mark.skipif(sqlalchemy_version == 1, reason='Requires SQLAlchemy 2+')
495-
async def test_async_avg(self):
495+
async def test_psycopg_async_avg(self):
496496
engine = create_async_engine('postgresql+psycopg://localhost/pgvector_python_test')
497497
async_session = async_sessionmaker(engine, expire_on_commit=False)
498498

@@ -507,7 +507,7 @@ async def test_async_avg(self):
507507

508508
@pytest.mark.asyncio
509509
@pytest.mark.skipif(sqlalchemy_version == 1, reason='Requires SQLAlchemy 2+')
510-
async def test_async_vector_array(self):
510+
async def test_psycopg_async_vector_array(self):
511511
engine = create_async_engine('postgresql+psycopg://localhost/pgvector_python_test')
512512
async_session = async_sessionmaker(engine, expire_on_commit=False)
513513

0 commit comments

Comments
 (0)