remove pre 0.12.0 test handles

This commit is contained in:
Thomas S Hatch 2013-01-15 00:10:19 -07:00
parent 4617a931be
commit 89525ad6d0

View file

@ -41,15 +41,8 @@ class CallTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
def test_text_output(self):
out = self.run_call('-l quiet --out txt test.fib 3')
if version.__version_info__ < (0, 12):
expect = [
"WARNING: The option --text-out is deprecated. Please "
"consider using '--out text' instead."
]
else:
expect = []
expect += [
expect = [
'local: ([0, 1, 1, 2]'
]