Module: check_mk
Branch: master
Commit: 4a99983fa26143ff2b78bcc8a4659e7aefc2fc21
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=4a99983fa26143…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Jan 10 12:00:43 2019 +0100
TLS is not there yet
Change-Id: I7bdd85b1d0cdf006f3d0a1cd15f3c0ae3a072896
---
tests/integration/cmk/gui/test_webapi.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/integration/cmk/gui/test_webapi.py
b/tests/integration/cmk/gui/test_webapi.py
index 7d44e25..f3d3642 100644
--- a/tests/integration/cmk/gui/test_webapi.py
+++ b/tests/integration/cmk/gui/test_webapi.py
@@ -133,7 +133,7 @@ def test_get_all_sites(web, site):
"tcp:1.2.3.4:6557",
("tcp", {
"address": ("1.2.3.4", 6557),
- "tls": ("plain_text", {}),
+ #"tls": ("plain_text", {}),
}),
])
def test_set_site(web, site, sock_spec):
@@ -147,7 +147,7 @@ def test_set_site(web, site, sock_spec):
expected_site_config = copy.deepcopy(original_site["site_config"])
expected_site_config["socket"] = ("tcp", {
"address": ("1.2.3.4", 6557),
- "tls": ("plain_text", {}),
+ #"tls": ("plain_text", {}),
})
try:
@@ -168,7 +168,7 @@ def test_set_site(web, site, sock_spec):
"tcp:1.2.3.4:6557",
("tcp", {
"address": ("1.2.3.4", 6557),
- "tls": ("plain_text", {}),
+ #"tls": ("plain_text", {}),
}),
])
def test_set_all_sites(web, site, sock_spec):
@@ -183,7 +183,7 @@ def test_set_all_sites(web, site, sock_spec):
expected_site_config =
copy.deepcopy(copy.deepcopy(response["sites"][site.id]))
expected_site_config["socket"] = ("tcp", {
"address": ("1.2.3.4", 6557),
- "tls": ("plain_text", {}),
+ #"tls": ("plain_text", {}),
})
response["sites"][new_site_id] = new_site_config