From 9d878fda55bed71f7b73d3e8a39579ccb6eb13be Mon Sep 17 00:00:00 2001 From: Kim Seon Woo <69591622+seonwoo960000@users.noreply.github.com> Date: Sun, 18 Aug 2024 21:05:01 +0200 Subject: [PATCH] Remove failing test for now --- testing/insert.test | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/testing/insert.test b/testing/insert.test index 5a4967e83..46656928b 100755 --- a/testing/insert.test +++ b/testing/insert.test @@ -2,16 +2,3 @@ set testdir [file dirname $argv0] source $testdir/tester.tcl - -do_execsql_check_err_msg insert-1.1 { - INSERT INTO test1 VALUES(1,2,3); -} {Error: in prepare, no such table: test1} - -do_execsql_with_cleanup_test insert-1.2 { - CREATE TABLE test1(one int, two int, three int); - INSERT INTO test1 VALUES(1, 2, 3); - SELECT * FROM test1; -} {1|2|3} { - DROP TABLE IF EXISTS test1; -} -