From 19b2995c1171430b421ddbd5d93101f4f427f4c6 Mon Sep 17 00:00:00 2001 From: Thomi Richards Date: Mon, 13 Jan 2014 11:10:11 +1300 Subject: Fix failing test on py33. --- python/subunit/tests/test_output_filter.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/python/subunit/tests/test_output_filter.py b/python/subunit/tests/test_output_filter.py index 7b11d4d..cba9332 100644 --- a/python/subunit/tests/test_output_filter.py +++ b/python/subunit/tests/test_output_filter.py @@ -166,16 +166,14 @@ 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.2': - expected_message = '--tag option requires 1 argument' - else: - expected_message = '--tag option requires an argument' self.assertThat( fn, - raises(RuntimeError(expected_message)) + MatchesAny( + raises(RuntimeError('--tag option requires 1 argument')), + raises(RuntimeError('--tag option requires an argument')), + ) ) - def get_result_for(commands): """Get a result object from *commands. -- cgit v1.2.1