summaryrefslogtreecommitdiff
path: root/filters
diff options
context:
space:
mode:
authorJonathan Lange <jml@mumak.net>2012-04-10 14:39:10 +0100
committerJonathan Lange <jml@mumak.net>2012-04-10 14:39:10 +0100
commite27078f7cf400430ece539c887402eba32f289ac (patch)
tree89e436e0dbb6fe7061b9b7414a62b41224fbbdb1 /filters
parentaad389aa5cd509434a171c14cdc76a1358d80b57 (diff)
downloadsubunit-e27078f7cf400430ece539c887402eba32f289ac.tar.gz
Make sure all of our predicates support tags.
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/subunit-filter2
1 files changed, 1 insertions, 1 deletions
diff --git a/filters/subunit-filter b/filters/subunit-filter
index 7f5620f..66759ff 100755
--- a/filters/subunit-filter
+++ b/filters/subunit-filter
@@ -97,7 +97,7 @@ def _make_regexp_filter(with_regexps, without_regexps):
with_re = with_regexps and _compile_re_from_list(with_regexps)
without_re = without_regexps and _compile_re_from_list(without_regexps)
- def check_regexps(test, outcome, err, details):
+ def check_regexps(test, outcome, err, details, tags):
"""Check if this test and error match the regexp filters."""
test_str = str(test) + outcome + str(err) + str(details)
if with_re and not with_re.search(test_str):