Delete unnecessary test

This commit is contained in:
Simon Willison 2026-05-25 10:39:56 -07:00
commit f0b59971f7

View file

@ -169,13 +169,6 @@ def test_analyze_attached_database_tables(conn):
}
def test_analyze_invalid_sql_cleans_up_authorizer(conn):
with pytest.raises(sqlite3.OperationalError):
analyze_sql_tables(conn, "insert into missing_table values (1)")
conn.execute("select name from dogs").fetchall()
def test_analyze_clears_authorizer_on_error():
class FakeConnection:
def __init__(self):