summaryrefslogtreecommitdiffstats
path: root/app/api/responders/resource/connection_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/api/responders/resource/connection_tests.py')
-rw-r--r--app/api/responders/resource/connection_tests.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/api/responders/resource/connection_tests.py b/app/api/responders/resource/connection_tests.py
index 8f8ab94..cb4865d 100644
--- a/app/api/responders/resource/connection_tests.py
+++ b/app/api/responders/resource/connection_tests.py
@@ -24,14 +24,14 @@ class ConnectionTests(ResponderBase):
RESULTS = "test_results"
CONFIGURATIONS = "targets_configuration"
STATUSES = ["request", "response"]
+ PROJECTION = {
+ ID: True,
+ TARGETS: True,
+ RESULTS: True
+ }
def __init__(self):
super().__init__()
- self.PROJECTION = {
- self.ID: True,
- self.TARGETS: True,
- self.RESULTS: True
- }
self.allowed_targets = \
self.get_constants_by_name("configuration_targets")