diff options
| author | Thomi Richards <thomi.richards@canonical.com> | 2013-12-10 11:10:57 +1300 |
|---|---|---|
| committer | Thomi Richards <thomi.richards@canonical.com> | 2013-12-10 11:10:57 +1300 |
| commit | da6c0076527849d6e720a5cfc5ed7544650f58f6 (patch) | |
| tree | 310a0661382d0fb866a0b628f5929a9bfe1f216c /python | |
| parent | 4a4f7ffda0a72a2735008029022cb92f737407b3 (diff) | |
| download | subunit-git-da6c0076527849d6e720a5cfc5ed7544650f58f6.tar.gz | |
Make tests work in py2 and py3.
Diffstat (limited to 'python')
| -rw-r--r-- | python/subunit/tests/test_output_filter.py | 6 |
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)) ) |
