1
0
Fork 0

[fix] fix KeyError: 'ipv6'

tests/units/network/test_network.py requires a call to searx.network.network.initialize
Depending of the test order execution, this function was sometimes call in another test,
sometimes not.

This commit ensure there is a call to initialize()
Dieser Commit ist enthalten in:
Alexandre Flament 2021-05-07 10:57:55 +02:00 committet von Noémi Ványi
Ursprung 5e53e9412d
Commit 4a187d41be
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -4,12 +4,15 @@ from mock import patch
import httpx
from searx.network.network import Network, NETWORKS
from searx.network.network import Network, NETWORKS, initialize
from searx.testing import SearxTestCase
class TestNetwork(SearxTestCase):
def setUp(self):
initialize()
def test_simple(self):
network = Network()