summaryrefslogtreecommitdiff
path: root/python/subunit/tests/test_output_filter.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/subunit/tests/test_output_filter.py')
-rw-r--r--python/subunit/tests/test_output_filter.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/subunit/tests/test_output_filter.py b/python/subunit/tests/test_output_filter.py
index 4099023..40bec89 100644
--- a/python/subunit/tests/test_output_filter.py
+++ b/python/subunit/tests/test_output_filter.py
@@ -166,9 +166,13 @@ 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':
+ expected_message = '--tag option requires 1 argument'
+ else:
+ expected_message = '--tag option requires an argument'
self.assertThat(
fn,
- raises(RuntimeError('--tag option requires 1 argument'))
+ raises(RuntimeError(expected_message))
)