AutoTest: Be consistent when naming test root nodes

'Quick Tests' was the only plural form used as root node. So, strip
the trailing 's' and use singular for all.

Change-Id: I7f009294168446c5541fdaea097ef3c9e28983e7
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
This commit is contained in:
Christian Stenger
2017-08-07 14:44:56 +02:00
parent bfa0d0b9fb
commit 48de91f422

View File

@@ -37,7 +37,7 @@ ITestParser *QuickTestFramework::createTestParser() const
TestTreeItem *QuickTestFramework::createRootNode() const
{
return new QuickTestTreeItem(QCoreApplication::translate("QuickTestFramework", "Quick Tests"),
return new QuickTestTreeItem(QCoreApplication::translate("QuickTestFramework", "Quick Test"),
QString(), TestTreeItem::Root);
}