summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@digia.com>2014-01-21 16:59:09 +0100
committerChristian Stenger <christian.stenger@digia.com>2014-01-21 23:10:00 +0100
commitfb114e38826585b8d1b0202be5923789839a7c93 (patch)
treee2a392b9adf7928954882fed3ca48bba8d294e89
parentfca97a53d4a48ff7a6dcb914f5e2a637c510a6d4 (diff)
downloadqt-creator-fb114e38826585b8d1b0202be5923789839a7c93.tar.gz
Squish: Fix condition in project.py
This error was introduced in 0f04c2b3b0aff319733c4123d2b4511ed7743f74. Change-Id: Ifdaa18d4267daff1e59c5ced3cfc188beb4c52c9 Reviewed-by: Robert Loehning <robert.loehning@digia.com>
-rw-r--r--tests/system/shared/project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/shared/project.py b/tests/system/shared/project.py
index 9a541ffe2e..9fdd1491b4 100644
--- a/tests/system/shared/project.py
+++ b/tests/system/shared/project.py
@@ -512,7 +512,7 @@ def __closeSubprocessByHookingInto__(executable, port, function, sType, userDefT
resetApplicationContextToCreator()
__closeSubprocessByPushingStop__(sType)
resetApplicationContextToCreator()
- if not waitForProcessRunning(False) and waitFor("'exited with code' in str(output.plainText)", 10000):
+ if not (waitForProcessRunning(False) and waitFor("'exited with code' in str(output.plainText)", 10000)):
test.warning("Sub-process seems not to have closed properly.")
try:
__closeSubprocessByPushingStop__(sType)