From 69b9cfbb37effa0f55097be6342dafab97111555 Mon Sep 17 00:00:00 2001 From: Thomi Richards Date: Mon, 16 Dec 2013 09:02:35 +1300 Subject: Fix failing test in python 3.2. --- python/subunit/tests/test_output_filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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' -- cgit v1.2.1