aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@nokia.com>2012-03-05 09:31:39 +0100
committerChristian Stenger <christian.stenger@nokia.com>2012-03-05 10:47:30 +0100
commitbf993e1fda58335ea96d735a8986b98a57edcac4 (patch)
tree0a7ed72c325ad928ee9959202c3ed1a7f94bff65 /tests
parent339b34a5df6d09c9b39686a90a81c4e0fb467179 (diff)
Squish: Fix change to upper-case
Change-Id: I8ce23ea8cc846001d207fc42cb53c02bf9a1b6d5 Reviewed-by: Bill King <bill.king@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_general/tst_create_proj_wizard/test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py
index 1f441fbef0..d62442138e 100644
--- a/tests/system/suite_general/tst_create_proj_wizard/test.py
+++ b/tests/system/suite_general/tst_create_proj_wizard/test.py
@@ -22,7 +22,7 @@ def main():
test.compare("Projects", str(projects.data()))
comboBox = waitForObject("{name='comboBox' type='QComboBox' visible='1' "
"window=':New_Core::Internal::NewDialog'}")
- test.compare(comboBox.currentText, "All templates")
+ test.compare(comboBox.currentText, "All Templates")
for row in range(catModel.rowCount(projects)):
index = catModel.index(row, 0, projects)
category = str(index.data()).replace(".", "\\.")