X-Git-Url: http://www.average.org/gitweb/?a=blobdiff_plain;f=test%2Fcommon.py;fp=test%2Fcommon.py;h=17fde963e448ac8a76d2ebd3d25742d91905bd8f;hb=9bf81b19b7b790bc2115ac08dc1f3c112aede976;hp=761ea6721a267c832af4d3dfca910f6cbbb2dbb9;hpb=5bd4b1bad2506f2f5f71161ac9e8a9b141e0fef4;p=loctrkd.git diff --git a/test/common.py b/test/common.py index 761ea67..17fde96 100644 --- a/test/common.py +++ b/test/common.py @@ -39,11 +39,13 @@ class TestWithServers(TestCase): freeports.append(sk.getsockname()[1]) _, self.tmpfilebase = mkstemp() self.conf = ConfigParser() + self.conf["common"] = { + "protocols": "zx303proto", + } self.conf["collector"] = { "port": str(freeports[0]), "publishurl": "ipc://" + self.tmpfilebase + ".pub", "listenurl": "ipc://" + self.tmpfilebase + ".pul", - "protocols": "zx303proto", } self.conf["storage"] = { "dbfn": self.tmpfilebase + ".storage.sqlite", @@ -53,7 +55,7 @@ class TestWithServers(TestCase): "downloadurl": f"http://localhost:{freeports[2]}/test/262.csv.gz", } self.conf["rectifier"] = { - "backend": "opencellid", + "lookaside": "opencellid", } self.conf["wsgateway"] = { "port": str(freeports[1]),