This commit is contained in:
Nick Sweeting
2025-12-28 17:51:54 -08:00
parent 54f91c1339
commit f0aa19fa7d
157 changed files with 6774 additions and 5061 deletions

View File

@@ -13,7 +13,7 @@ def test_title_is_extracted(tmp_path, process, disable_extractors_dict):
conn = sqlite3.connect("index.sqlite3")
conn.row_factory = sqlite3.Row
c = conn.cursor()
c.execute("SELECT title from core_snapshot")
c.execute("SELECT title from archivebox.core.snapshot")
snapshot = c.fetchone()
conn.close()