Squish: Fix change to upper-case

Change-Id: I8ce23ea8cc846001d207fc42cb53c02bf9a1b6d5
Reviewed-by: Bill King <bill.king@nokia.com>
This commit is contained in:
Christian Stenger
2012-03-05 09:31:39 +01:00
parent 339b34a5df
commit bf993e1fda

View File

@@ -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(".", "\\.")