[FIX] base_remote: Fix tests

pull/3198/head
Enric Tobella 2025-02-12 21:40:36 +01:00
parent 3c756468eb
commit 462db4b904
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,7 @@ class TestRemote(HttpCase):
if remote:
remote.unlink()
self.original_request = http.request
http.request = type(
"obj",
(object,),
@ -49,6 +50,10 @@ class TestRemote(HttpCase):
},
)
def tearDown(self):
super().tearDown()
http.request = self.original_request
def test_xmlrpc_login_ok(self, *args):
"""Test Login"""
data1 = self.data_demo