Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
matriv committed Sep 21, 2023
1 parent 23a1e04 commit d2a0c5f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/client_tests/python/asyncpg/test_asyncpg.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,11 @@ async def bitstring_can_be_inserted_and_selected_using_binary_encoding(test, con
async def float_vector_can_be_inserted_and_selected(test, conn):
fv = [1.1, 2.2, 3.3, 4.4]
await conn.execute('drop table if exists tbl_fv')
await conn.execute('create table tbl_fv (id int, fv float[]])')
await conn.execute('create table tbl_fv (id int, fv float[])')
await conn.execute('insert into tbl_fv (id, fv) values (1, ?)', fv)
await conn.execute('insert into tbl_fv (id, fv) values (2, ?)', None)
await conn.execute('refresh table tbl_fv')
result = await conn.fetch('select fv from tbl_fv order by id')
test.assertEqual(result[0][0], fv)
test.assertNone(result[1][0])


async def fetch_summits(test, uri):
Expand Down

0 comments on commit d2a0c5f

Please sign in to comment.