From b837232b13022e5f52295f4520745318975a9cf9 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Sat, 18 Oct 2025 12:05:33 -0400 Subject: [PATCH] Remove tests that alter testing.db from views.test --- testing/views.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/views.test b/testing/views.test index e7ca6a938..f5829abaa 100755 --- a/testing/views.test +++ b/testing/views.test @@ -230,13 +230,13 @@ do_execsql_test_on_specific_db {:memory:} view-with-having { } {C|380 A|250} -do_execsql_test_error view-self-circle-detection { +do_execsql_test_in_memory_error_content view-self-circle-detection { CREATE VIEW v AS SELECT * FROM v; SELECT * FROM v; } {view v is circularly defined} -do_execsql_test_error view-mutual-circle-detection { +do_execsql_test_in_memory_error_content view-mutual-circle-detection { CREATE VIEW v AS SELECT * FROM vv; CREATE VIEW vv AS SELECT * FROM v; SELECT * FROM v;