tst_QStringBuilder: drop the unused #ifndef

It was removed in the previous patch.
Amends 07a0ecf81fb94a990573df3f51c641e180924892.

Change-Id: Ib4cfccef52485bf178f00bcdc7767ddb7fbb10d2
Reviewed-by: Ahmad Samir <a.samirh78@gmail.com>
This commit is contained in:
Ivan Solovev 2024-08-12 16:43:28 +02:00
parent 1a0f056f31
commit 96950bdc44

View File

@ -479,7 +479,6 @@ void runScenario()
r = QByteArrayLiteral(LITERAL) P string; r = QByteArrayLiteral(LITERAL) P string;
QCOMPARE(r, r2); QCOMPARE(r, r2);
#ifndef HAS_QTBUG_127928
r = ba P l1string; r = ba P l1string;
QCOMPARE(r, r2); QCOMPARE(r, r2);
r = l1string P ba; r = l1string P ba;
@ -489,7 +488,6 @@ void runScenario()
QCOMPARE(r, r2); QCOMPARE(r, r2);
r = QLatin1String(l1string) P std::as_const(ba); r = QLatin1String(l1string) P std::as_const(ba);
QCOMPARE(r, r2); QCOMPARE(r, r2);
#endif
static const char badata[] = LITERAL_EXTRA; static const char badata[] = LITERAL_EXTRA;
ba = QByteArray::fromRawData(badata, LITERAL_LEN); ba = QByteArray::fromRawData(badata, LITERAL_LEN);