From 48de91f422cac9e199435da89c9bc2980e92c51c Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 7 Aug 2017 14:44:56 +0200 Subject: [PATCH] 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 --- src/plugins/autotest/quick/quicktestframework.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/autotest/quick/quicktestframework.cpp b/src/plugins/autotest/quick/quicktestframework.cpp index 17e2c449be7..ef5423bb6f8 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); }