]> www.average.org Git - loctrkd.git/blobdiff - test/test_storage.py
test: opencellid downloader
[loctrkd.git] / test / test_storage.py
index 80ccba61fed7ad87a373162bcdea545526c77030..98366aa8d4cf60e59981125118a0c21ee749b3d9 100644 (file)
@@ -2,7 +2,7 @@
 
 from random import Random
 from socket import getaddrinfo, socket, AF_INET, SOCK_STREAM
-from sqlite3 import connect, Row
+from sqlite3 import connect
 from time import sleep
 from typing import Any
 import unittest
@@ -38,7 +38,6 @@ class Storage(TestWithServers):
         sleep(1)
         got = set()
         with connect(self.conf.get("storage", "dbfn")) as db:
-            db.row_factory = Row
             for is_incoming, packet in db.execute(
                 "select is_incoming, packet from events"
             ):