From c818a2fa3afb8eaacf42061df26b7e4a36da88ec Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 8 Nov 2014 15:05:54 -0500 Subject: [PATCH] Unit Tests - Removed whitespace for readability. --- test/tw-1414.t | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/tw-1414.t b/test/tw-1414.t index 2eb36bd4b..e9887371c 100755 --- a/test/tw-1414.t +++ b/test/tw-1414.t @@ -19,34 +19,24 @@ class TestBug1414(TestCase): def test_execute(self): """use execute""" - code, out, err = self.t(("exec", "echo hello")) - self.assertIn("hello", out) def test_exec_alias(self): """use exec in alias""" - self.t.config("alias.asdf", "exec echo hello") - code, out, err = self.t(("asdf", "")) - self.assertIn("hello", out) def test_execute_alias(self): """use execute in alias""" - self.t.config("alias.asdf", "execute echo hello") - code, out, err = self.t(("asdf", "")) - self.assertIn("hello", out) def test_default_command(self): """use exec in default.command""" - code, out, err = self.t() - self.assertIn("hello", out) if __name__ == "__main__":