aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_general/tst_select_all/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_general/tst_select_all/test.py')
-rw-r--r--tests/system/suite_general/tst_select_all/test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/system/suite_general/tst_select_all/test.py b/tests/system/suite_general/tst_select_all/test.py
index be6ddf92ab..fda92a3ccf 100644
--- a/tests/system/suite_general/tst_select_all/test.py
+++ b/tests/system/suite_general/tst_select_all/test.py
@@ -35,7 +35,7 @@ def main():
test.compare(editor.textCursor().selectionStart(), 0)
test.compare(editor.textCursor().selectionEnd(), size)
test.compare(editor.textCursor().position(), size)
- test.log("Pressing key %s" % key)
+ test.log("Pressing key: %s" % key.replace("<", "").replace(">", ""))
type(editor, key)
if key == "<Up>":
test.compare(editor.textCursor().selectionStart(), editor.textCursor().selectionEnd())
@@ -43,7 +43,7 @@ def main():
pos = size
if key == "<Left>":
pos -= 1
- if platform.system() != 'Darwin' and JIRA.isBugStillOpen(7215, JIRA.Bug.CREATOR):
+ if JIRA.isBugStillOpen(7215, JIRA.Bug.CREATOR):
test.warning("Using workaround for %s-%d" % (JIRA.Bug.CREATOR, 7215))
pos = 0
test.compare(editor.textCursor().selectionStart(), pos)