From 86e544ce4c01097cad4a69c7d6fab27357f69385 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 22 Oct 2012 17:19:33 +0200 Subject: [PATCH] Squish: Fix typeLines() Change-Id: I13abcceebc3f61b508da658d5e9d4650fddff6ea Reviewed-by: Robert Loehning --- tests/system/shared/editor_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/shared/editor_utils.py b/tests/system/shared/editor_utils.py index f7573e1947..25cc9d2c25 100644 --- a/tests/system/shared/editor_utils.py +++ b/tests/system/shared/editor_utils.py @@ -92,7 +92,7 @@ def typeLines(editor, lines): if isinstance(lines, (list, tuple)): for line in lines: type(editor, line) - type(editor, "") + type(editor, "") else: test.warning("Illegal parameter passed to typeLines()") -- GitLab