Remove one out-of-date comment, refine another that was imprecise

The former is a follow-up to c17563eca8.

Change-Id: I3cd41e6e38f740de67605f785a804ffd879b9e67
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Edward Welbourne 2018-12-06 13:11:25 +01:00
parent b60c642ec0
commit 4ee59cf96d

View File

@ -95,11 +95,6 @@ void tst_QCollator::compare_data()
QTest::addColumn<bool>("ignorePunctuation");
QTest::addColumn<int>("punctuationResult");
/*
A few tests below are commented out on the mac. It's unclear why they fail,
as it looks like the collator for the locale is created correctly.
*/
/*
It's hard to test English, because it's treated differently
on different platforms. For example, on Linux, it uses the
@ -164,7 +159,7 @@ void tst_QCollator::compare_data()
QTest::newRow("german13") << QString("de_DE") << QString("test.19") << QString("test,19") << 1 << 1 << true << true << 0;
/*
French sorting of e and e with accent
French sorting of e and e with acute accent
*/
QTest::newRow("french1") << QString("fr_FR") << QString::fromLatin1("\xe9") << QString::fromLatin1("e") << 1 << 1 << false << false << 1;
QTest::newRow("french2") << QString("fr_FR") << QString::fromLatin1("\xe9t") << QString::fromLatin1("et") << 1 << 1 << false << false << 1;