diff --git a/src/modules/locale/Tests.cpp b/src/modules/locale/Tests.cpp index fbc76fa9b..af37a664b 100644 --- a/src/modules/locale/Tests.cpp +++ b/src/modules/locale/Tests.cpp @@ -149,7 +149,7 @@ LocaleTests::testTZImages() } } - QEXPECT_FAIL("", "TZ Images not yet all fixed", Continue); + QEXPECT_FAIL( "", "TZ Images not yet all fixed", Continue ); QCOMPARE( overlapcount, 0 ); } @@ -217,7 +217,7 @@ LocaleTests::testTZLocations() } } - QEXPECT_FAIL("", "TZ Images contain pixel-overlaps", Continue); + QEXPECT_FAIL( "", "TZ Images contain pixel-overlaps", Continue ); QCOMPARE( overlapcount, 0 ); } @@ -262,9 +262,9 @@ LocaleTests::testSpecificLocations() auto gpos = TimeZoneImageList::getLocationPosition( gibraltar->longitude(), gibraltar->latitude() ); auto cpos = TimeZoneImageList::getLocationPosition( ceuta->longitude(), ceuta->latitude() ); - QEXPECT_FAIL("", "Gibraltar and Ceuta are really close", Continue); + QEXPECT_FAIL( "", "Gibraltar and Ceuta are really close", Continue ); QVERIFY( gpos != cpos ); QVERIFY( gibraltar->latitude() > ceuta->latitude() ); - QEXPECT_FAIL("", "Gibraltar and Ceuta are really close", Continue); + QEXPECT_FAIL( "", "Gibraltar and Ceuta are really close", Continue ); QVERIFY( gpos.y() < cpos.y() ); // Gibraltar is north of Ceuta }