AutoTest: Fix some ui text punctuation

Change-Id: I9d028d6649d5093f599629e99cef0fdcbeb66db9
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Christian Stenger
2023-06-20 08:00:49 +02:00
parent 9f5a0e3834
commit 32c864951c
3 changed files with 9 additions and 9 deletions

View File

@@ -81,7 +81,7 @@ void GTestOutputReader::processOutputLine(const QByteArray &outputLine)
if (ExactMatch match = testEnds.match(line)) {
TestResult testResult = createDefaultResult();
testResult.setResult(ResultType::TestEnd);
testResult.setDescription(Tr::tr("Test execution took %1").arg(match.captured(2)));
testResult.setDescription(Tr::tr("Test execution took %1.").arg(match.captured(2)));
reportResult(testResult);
m_currentTestSuite.clear();
m_currentTestCase.clear();