Fix build.

develop
Roman Telezhynskyi 2022-08-17 16:35:38 +03:00
parent 003c9bf33f
commit b43592e3e9
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ void TST_BuitInRegExp::TestCheckIsNamesUnique_data()
for (const auto &key : keys)
{
const QString tag = QString("Locale: '%1'. Name '%2'").arg(m_locale, key);
QTest::newRow(qUtf8Printable(tag)) << key << names.values(key);
QTest::newRow(qUtf8Printable(tag)) << key << QStringList(names.values(key));
}
}

View File

@ -137,7 +137,7 @@ void TST_MeasurementRegExp::TestCheckIsNamesUnique_data()
for (const auto &key : keys)
{
const QString tag = QString("System: '%1', locale: '%2'. Name '%3'").arg(m_system, m_locale, key);
QTest::newRow(qUtf8Printable(tag)) << key << names.values(key);
QTest::newRow(qUtf8Printable(tag)) << key << QStringList(names.values(key));
}
}