From 53c5240a0b469c13acbe6786f7216ba8a9fd76af Mon Sep 17 00:00:00 2001 From: Christine Date: Tue, 15 May 2018 16:58:15 -0400 Subject: [PATCH] flake8 fixes --- tests/checks/mock/test_sysstat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/checks/mock/test_sysstat.py b/tests/checks/mock/test_sysstat.py index 883ba03116..b79ca121f4 100644 --- a/tests/checks/mock/test_sysstat.py +++ b/tests/checks/mock/test_sysstat.py @@ -249,7 +249,7 @@ def sunos5_output(self, *args, **kwargs): ramdisk1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 sd0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 102 sd1 0.0 139.0 0.0 1850.6 0.0 0.0 0.1 0 10 -""" +""" return output, 0, 0 def freebsd_output(self, *args, **kwargs): @@ -259,7 +259,7 @@ def freebsd_output(self, *args, **kwargs): extended device statistics device r/s w/s kr/s kw/s wait svc_t %b ad0 0.0 2.0 0.0 31.8 0 0.2 102 -""" +""" return output, 0, 0 @mock.patch('checks.system.unix.sys.platform', 'sunos5')