fix test tale ordering

This commit is contained in:
Alex Garcia 2026-02-13 06:55:49 -08:00
parent 0dd6827f31
commit f8db17fded

View file

@ -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()
) )