From f8db17fded47038b30a1093e62b71f9cdfa4d802 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Fri, 13 Feb 2026 06:55:49 -0800 Subject: [PATCH] fix test tale ordering --- tests/test-general.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-general.py b/tests/test-general.py index 2e14cae..a7b540a 100644 --- a/tests/test-general.py +++ b/tests/test-general.py @@ -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 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;") 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() )