Delete obsolete test_memory_attribute_for_existing_connection test

Refs https://github.com/simonw/sqlite-utils/issues/789#issuecomment-4949146177

Closes #789
This commit is contained in:
Simon Willison 2026-07-11 16:28:36 -07:00
commit 6531a57863

View file

@ -111,10 +111,3 @@ def test_memory_attribute_for_file_path(tmpdir):
db = Database(str(tmpdir / "file.db"))
assert db.memory is False
assert db.memory_name is None
def test_memory_attribute_for_existing_connection():
conn = sqlite3.connect(":memory:")
db = Database(conn)
assert db.memory is False
assert db.memory_name is None