Squish: Fix typeLines()

Change-Id: I13abcceebc3f61b508da658d5e9d4650fddff6ea
Reviewed-by: Robert Loehning <robert.loehning@digia.com>
This commit is contained in:
Christian Stenger
2012-10-22 17:19:33 +02:00
parent 7728ed4af1
commit 86e544ce4c

View File

@@ -92,7 +92,7 @@ def typeLines(editor, lines):
if isinstance(lines, (list, tuple)): if isinstance(lines, (list, tuple)):
for line in lines: for line in lines:
type(editor, line) type(editor, line)
type(editor, "<Enter>") type(editor, "<Return>")
else: else:
test.warning("Illegal parameter passed to typeLines()") test.warning("Illegal parameter passed to typeLines()")