summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@digia.com>2012-10-22 17:19:33 +0200
committerChristian Stenger <christian.stenger@digia.com>2012-10-23 09:16:06 +0200
commit86e544ce4c01097cad4a69c7d6fab27357f69385 (patch)
tree2dcc8bd1869f8cfdd5cec309713dbf0cb9c5affa /tests
parent7728ed4af155747c35aa8a5f226874db38a15cf0 (diff)
downloadqt-creator-86e544ce4c01097cad4a69c7d6fab27357f69385.tar.gz
Squish: Fix typeLines()
Change-Id: I13abcceebc3f61b508da658d5e9d4650fddff6ea Reviewed-by: Robert Loehning <robert.loehning@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/shared/editor_utils.py2
1 files changed, 1 insertions, 1 deletions
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, "<Enter>")
+ type(editor, "<Return>")
else:
test.warning("Illegal parameter passed to typeLines()")