diff options
| author | Ramin Farajpour Cami <ramin.blackhat@gmail.com> | 2016-11-12 20:41:23 +0330 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-14 12:30:46 -0500 |
| commit | 967be82443b5640d61608a89897d8ce2bc44fa54 (patch) | |
| tree | 9905e1156e27aa3d1226da3dde1223a5087b0d55 /tests/check_framework | |
| parent | 6072de727f0ffa7bf0aa67aadba5d4589561974d (diff) | |
Fixed E305 flake8 warnings.
Diffstat (limited to 'tests/check_framework')
| -rw-r--r-- | tests/check_framework/tests.py | 4 |
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'] |
