summaryrefslogtreecommitdiff
path: root/tests/check_framework
diff options
context:
space:
mode:
authorRamin Farajpour Cami <ramin.blackhat@gmail.com>2016-11-12 20:41:23 +0330
committerTim Graham <timograham@gmail.com>2016-11-14 12:30:46 -0500
commit967be82443b5640d61608a89897d8ce2bc44fa54 (patch)
tree9905e1156e27aa3d1226da3dde1223a5087b0d55 /tests/check_framework
parent6072de727f0ffa7bf0aa67aadba5d4589561974d (diff)
Fixed E305 flake8 warnings.
Diffstat (limited to 'tests/check_framework')
-rw-r--r--tests/check_framework/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/check_framework/tests.py b/tests/check_framework/tests.py
index 4748f28eeb..26ce929655 100644
--- a/tests/check_framework/tests.py
+++ b/tests/check_framework/tests.py
@@ -137,12 +137,16 @@ def simple_system_check(**kwargs):
def tagged_system_check(**kwargs):
tagged_system_check.kwargs = kwargs
return [checks.Warning('System Check')]
+
+
tagged_system_check.tags = ['simpletag']
def deployment_system_check(**kwargs):
deployment_system_check.kwargs = kwargs
return [checks.Warning('Deployment Check')]
+
+
deployment_system_check.tags = ['deploymenttag']