From 023f243a2a90232caca9c99adb63492b1c405f32 Mon Sep 17 00:00:00 2001 From: pvogt09 <50047961+pvogt09@users.noreply.github.com> Date: Mon, 19 Jul 2021 18:28:04 +0200 Subject: [PATCH] use only first result from dig Signed-off-by: pvogt09 <50047961+pvogt09@users.noreply.github.com> --- test/test_automated_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_automated_install.py b/test/test_automated_install.py index b2e0f186..89fce2c9 100644 --- a/test/test_automated_install.py +++ b/test/test_automated_install.py @@ -622,7 +622,7 @@ def test_installPihole_fresh_install_readableBlockpage(Pihole, test_webpage): 'curl -s --head "{}" | ' + 'head -n 1 | ' + 'grep "HTTP/1.[01] [23].." > /dev/null') - digcommand = r"dig A +short {} @127.0.0.1" + digcommand = r"dig A +short {} @127.0.0.1 | head -n 1" pagecontent = 'curl --verbose -L "{}"' for page in piholeWebpage: testpage = "http://" + page + "/admin/"