Skip to content

Commit f8db17f

Browse files
committed
fix test tale ordering
1 parent 0dd6827 commit f8db17f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test-general.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ def test_shadow(db, snapshot):
1313
)
1414
assert exec(db, "select * from sqlite_master order by name") == snapshot()
1515
assert (
16-
exec(db, "select * from pragma_table_list where type = 'shadow'") == snapshot()
16+
exec(db, "select * from pragma_table_list where type = 'shadow' order by name") == snapshot()
1717
)
1818

1919
db.execute("drop table v;")
2020
assert (
21-
exec(db, "select * from pragma_table_list where type = 'shadow'") == snapshot()
21+
exec(db, "select * from pragma_table_list where type = 'shadow' order by name") == snapshot()
2222
)
2323

2424

0 commit comments

Comments
 (0)