Test: Removed debug diagnostics

This commit is contained in:
Paul Beckingham 2015-10-24 10:18:43 -04:00
parent 18652a834d
commit 2ca2e81a18

View file

@ -75,11 +75,8 @@ class TestBug1436(TestCase):
self.echo = Task(taskw=utils.binary_location("/bin/echo"))
code, out, err = self.echo("xxx \\\\\\\\yyy zzz") # Shows as 'xxx \\yyy zzz'
self.tap(out)
code, out, err = self.echo("xxx \\\\yyy zzz") # Shows as 'xxx \yyy zzz'
self.tap(out)
code, out, err = self.echo("xxx \\yyy zzz") # Shows as 'xxx yyy zzz'
self.tap(out)
if __name__ == "__main__":