summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-01-29 11:11:15 +0100
committerEdward Hervey <bilboed@bilboed.com>2009-01-29 11:11:15 +0100
commit43b97af2be804824bd21468a45a941b0a025b041 (patch)
tree9fa3504c3afc9e2c5de30e5cd3ea787421e7b04f /web
parent53ff4a8c7e85808d2e8a13e6a02263294d952445 (diff)
Get the detailed values
Diffstat (limited to 'web')
-rw-r--r--web/insanity/templatetags/insanity_extra.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/insanity/templatetags/insanity_extra.py b/web/insanity/templatetags/insanity_extra.py
index 2eace0f..ab04bbc 100644
--- a/web/insanity/templatetags/insanity_extra.py
+++ b/web/insanity/templatetags/insanity_extra.py
@@ -166,7 +166,7 @@ def test_extrainfo_dict(test):
@register.inclusion_tag('insanity/matrix_checklist_row.html')
def matrix_checklist_row(test, fullchecklist, fullarguments,
allchecks, allargs, allextrainfo):
- args = allargs.get(test, [])
+ args = test._get_full_arguments(fullarguments, allargs.get(test, []))
checks = allchecks.get(test, [])
test_error = test._test_error(allextras=allextrainfo.get(test, []))
return {'test':test,