summaryrefslogtreecommitdiff
path: root/python/subunit/test_results.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2012-05-03 20:18:01 +1200
committerRobert Collins <robertc@robertcollins.net>2012-05-03 20:18:01 +1200
commit26406f13e81807f8a3e94eae31fa7acc0bbaa0c2 (patch)
tree824fbad76ac2313b4df159c5c599a1993d13f6fe /python/subunit/test_results.py
parent09a69c5bc1ef7daafb2b167c43092bf94dc0dee6 (diff)
downloadsubunit-git-26406f13e81807f8a3e94eae31fa7acc0bbaa0c2.tar.gz
Make _make_tag_filter public.
Diffstat (limited to 'python/subunit/test_results.py')
-rw-r--r--python/subunit/test_results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/test_results.py b/python/subunit/test_results.py
index 1b14c5f..c00a2d3 100644
--- a/python/subunit/test_results.py
+++ b/python/subunit/test_results.py
@@ -309,7 +309,7 @@ def and_predicates(predicates):
return lambda *args, **kwargs: all(p(*args, **kwargs) for p in predicates)
-def _make_tag_filter(with_tags, without_tags):
+def make_tag_filter(with_tags, without_tags):
"""Make a callback that checks tests against tags."""
with_tags = with_tags and set(with_tags) or None