aboutsummaryrefslogtreecommitdiffstats
path: root/tests/system/suite_editors/tst_edit_externally/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/system/suite_editors/tst_edit_externally/test.py')
-rw-r--r--tests/system/suite_editors/tst_edit_externally/test.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/system/suite_editors/tst_edit_externally/test.py b/tests/system/suite_editors/tst_edit_externally/test.py
index 503cec645e8..db42df04273 100644
--- a/tests/system/suite_editors/tst_edit_externally/test.py
+++ b/tests/system/suite_editors/tst_edit_externally/test.py
@@ -101,7 +101,8 @@ def main():
test.fatal("Failed to get editor - continuing...")
continue
# verify currentFile
- waitFor("'addedLine' in str(editor.plainText)", 2500)
- test.compare(editor.plainText, contentBefore + "addedLine\n",
- "Verifying: file '%s' was reloaded modified." % currentFile)
+ if not currentFile.endswith(".bin"):
+ waitFor("'addedLine' in str(editor.plainText)", 2500)
+ test.compare(editor.plainText, contentBefore + "addedLine\n",
+ "Verifying: file '%s' was reloaded modified." % currentFile)
invokeMenuItem("File", "Exit")