summaryrefslogtreecommitdiff
path: root/squad_client/shortcuts.py
diff options
context:
space:
mode:
Diffstat (limited to 'squad_client/shortcuts.py')
-rw-r--r--squad_client/shortcuts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/squad_client/shortcuts.py b/squad_client/shortcuts.py
index a1879e0..d9a698f 100644
--- a/squad_client/shortcuts.py
+++ b/squad_client/shortcuts.py
@@ -29,7 +29,7 @@ def retrieve_build_results(build_url):
testrun = testruns[_id]
test_suites = {}
for suite in testrun.test_suites:
- test_suites[suite.name] = {t.short_name: t.status for t in suite.tests.values()}
+ test_suites[suite.name] = {t.short_name: t.status for t in suite.tests().values()}
metric_suites = {}
for suite in testrun.metric_suites: