summaryrefslogtreecommitdiff
path: root/python/subunit
diff options
context:
space:
mode:
authorThomi Richards <thomi.richards@canonical.com>2013-12-16 09:02:35 +1300
committerThomi Richards <thomi.richards@canonical.com>2013-12-16 09:02:35 +1300
commit727c9f25fac48381d7631a21eb4f6128f7ecb304 (patch)
tree57a255637ccd70668f9cc04192f1a0eb3dcc6e0f /python/subunit
parentda6c0076527849d6e720a5cfc5ed7544650f58f6 (diff)
downloadsubunit-git-727c9f25fac48381d7631a21eb4f6128f7ecb304.tar.gz
Fix failing test in python 3.2.
Diffstat (limited to 'python/subunit')
-rw-r--r--python/subunit/tests/test_output_filter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/subunit/tests/test_output_filter.py b/python/subunit/tests/test_output_filter.py
index 40bec89..7b11d4d 100644
--- a/python/subunit/tests/test_output_filter.py
+++ b/python/subunit/tests/test_output_filter.py
@@ -166,7 +166,7 @@ class ArgParserTests(TestCase):
def test_must_specify_tags_with_tags_options(self):
fn = lambda: safe_parse_arguments(['--fail', 'foo', '--tag'])
- if sys.version[0] >= '3':
+ if sys.version[0] > '3.2':
expected_message = '--tag option requires 1 argument'
else:
expected_message = '--tag option requires an argument'