From fb454ebe145dc922582bf9d0ee44f12aba977032 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Fri, 23 Oct 2020 23:09:07 +0100 Subject: [PATCH] fix stickler complaints Signed-off-by: Adam Warner --- test/test_automated_install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/test_automated_install.py b/test/test_automated_install.py index 300f622e..f6b5a87e 100644 --- a/test/test_automated_install.py +++ b/test/test_automated_install.py @@ -581,6 +581,7 @@ def test_os_check_fails(Pihole): expected_stdout = 'Unsupported OS detected: UnsupportedOS' assert expected_stdout in detectOS.stdout + def test_os_check_passes(Pihole): ''' Confirms OS meets the requirements ''' Pihole.run(''' @@ -593,4 +594,4 @@ def test_os_check_passes(Pihole): os_check ''') expected_stdout = 'Supported OS detected' - assert expected_stdout in detectOS.stdout \ No newline at end of file + assert expected_stdout in detectOS.stdout