We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd6827 commit f8db17fCopy full SHA for f8db17f
1 file changed
tests/test-general.py
@@ -13,12 +13,12 @@ def test_shadow(db, snapshot):
13
)
14
assert exec(db, "select * from sqlite_master order by name") == snapshot()
15
assert (
16
- 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()
17
18
19
db.execute("drop table v;")
20
21
22
23
24
0 commit comments