diff options
| author | Robert Collins <robertc@robertcollins.net> | 2012-05-03 20:18:01 +1200 |
|---|---|---|
| committer | Robert Collins <robertc@robertcollins.net> | 2012-05-03 20:18:01 +1200 |
| commit | 26406f13e81807f8a3e94eae31fa7acc0bbaa0c2 (patch) | |
| tree | 824fbad76ac2313b4df159c5c599a1993d13f6fe /python/subunit/test_results.py | |
| parent | 09a69c5bc1ef7daafb2b167c43092bf94dc0dee6 (diff) | |
| download | subunit-git-26406f13e81807f8a3e94eae31fa7acc0bbaa0c2.tar.gz | |
Make _make_tag_filter public.
Diffstat (limited to 'python/subunit/test_results.py')
| -rw-r--r-- | python/subunit/test_results.py | 2 |
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 |
