summaryrefslogtreecommitdiff
path: root/src/plugins/autotest/quick/quicktestframework.cpp
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2017-08-07 14:44:56 +0200
committerChristian Stenger <christian.stenger@qt.io>2017-08-08 04:55:25 +0000
commit48de91f422cac9e199435da89c9bc2980e92c51c (patch)
treeb43fa4cd2830e2d86a07b7f6f48c162b3e54bc62 /src/plugins/autotest/quick/quicktestframework.cpp
parentbfa0d0b9fb2535387df156546b931f76112982aa (diff)
downloadqt-creator-48de91f422cac9e199435da89c9bc2980e92c51c.tar.gz
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>
Diffstat (limited to 'src/plugins/autotest/quick/quicktestframework.cpp')
-rw-r--r--src/plugins/autotest/quick/quicktestframework.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/autotest/quick/quicktestframework.cpp b/src/plugins/autotest/quick/quicktestframework.cpp
index 17e2c449be..ef5423bb6f 100644
--- a/src/plugins/autotest/quick/quicktestframework.cpp
+++ b/src/plugins/autotest/quick/quicktestframework.cpp
@@ -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);
}