mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 08:46:49 +02:00
fix test tale ordering
This commit is contained in:
parent
0dd6827f31
commit
f8db17fded
1 changed files with 2 additions and 2 deletions
|
|
@ -13,12 +13,12 @@ def test_shadow(db, snapshot):
|
||||||
)
|
)
|
||||||
assert exec(db, "select * from sqlite_master order by name") == snapshot()
|
assert exec(db, "select * from sqlite_master order by name") == snapshot()
|
||||||
assert (
|
assert (
|
||||||
exec(db, "select * from pragma_table_list where type = 'shadow'") == snapshot()
|
exec(db, "select * from pragma_table_list where type = 'shadow' order by name") == snapshot()
|
||||||
)
|
)
|
||||||
|
|
||||||
db.execute("drop table v;")
|
db.execute("drop table v;")
|
||||||
assert (
|
assert (
|
||||||
exec(db, "select * from pragma_table_list where type = 'shadow'") == snapshot()
|
exec(db, "select * from pragma_table_list where type = 'shadow' order by name") == snapshot()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue