Fixed tests
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Scharnitzky Donát 2020-03-31 14:26:29 +02:00
parent 7a7643cfeb
commit 7d19ec0fa8

View File

@ -140,8 +140,7 @@ def test_learnconsumerlist(httpserver):
httpserver.expect_request(
uri="/consumer",
method='GET',
data="",
handler_type='permanent').respond_with_json(
data="").respond_with_json(
["10.69.42.1", "10.10.10.10", "10.20.30.40"])
url = httpserver.url_for("/")
port = re.match(r"\W*http[^:]*\D*(\d+)", url).group(1)
@ -198,7 +197,6 @@ def test_updateconsumer(httpserver):
locator = consumerlocator.ConsumerLocator(
uuid=generateduuid, communicator=comm)
assert locator.currentconsumer is not None
locator.learnconsumerlist();
ret = locator.updateconsumer()
assert ret == f"127.0.0.1:{port}"