Resolve #9223 Fix test for python 2.6
* trivial test refactor to allow for python 2.6 compat
This commit is contained in:
parent
05994cd900
commit
c070ab69f7
1 changed files with 2 additions and 8 deletions
|
@ -687,14 +687,8 @@ class TestUtils(unittest.TestCase):
|
|||
)
|
||||
|
||||
# invalid quote detection
|
||||
try:
|
||||
with self.assertRaises(Exception):
|
||||
split_args('hey I started a quote"')
|
||||
with self.assertRaises(Exception):
|
||||
split_args('hey I started a\' quote')
|
||||
except TypeError:
|
||||
# you must be on Python 2.6 still, FIXME
|
||||
pass
|
||||
self.assertRaises(Exception, split_args, 'hey I started a quote"')
|
||||
self.assertRaises(Exception, split_args, 'hey I started a\' quote')
|
||||
|
||||
# jinja2 loop blocks with lots of complexity
|
||||
_test_combo(
|
||||
|
|
Loading…
Reference in a new issue