Fix integration.shell.call.CallTest.test_default_output.

This commit is contained in:
Pedro Algarvio 2013-02-06 05:13:39 +00:00
parent df2ac900c3
commit aa721e89cf

View File

@ -34,10 +34,11 @@ class CallTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
out = self.run_call('-l quiet test.fib 3')
expect = ['local:',
' - 0',
' - 1',
' - 1',
' - 2']
' |_',
' - 0',
' - 1',
' - 1',
' - 2']
self.assertEqual(expect, out[:-1])
def test_text_output(self):