From 2ca2e81a189f189b2bb0225522f5d9a403688bf7 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 24 Oct 2015 10:18:43 -0400 Subject: [PATCH] Test: Removed debug diagnostics --- test/tw-1436.t | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/tw-1436.t b/test/tw-1436.t index 7068ce453..a30746b74 100755 --- a/test/tw-1436.t +++ b/test/tw-1436.t @@ -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__":