tst_QTextCodec: add the missing "e" to Negative Length

Brian Kernigham said the one thing he'd do differently in Unix if he had
the chance to do it all over again was to add the "e" to creat().

Change-Id: Ifa343726f2065e2fb4bafffd1c7a96a741c664da
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
Thiago Macieira 2024-09-05 11:03:19 +02:00
parent 69a761a2cc
commit 9da7af533d
1 changed files with 4 additions and 4 deletions

View File

@ -84,8 +84,8 @@ private slots:
void shiftJis();
void userCodec();
void nullInputZeroOrNegativLength_data();
void nullInputZeroOrNegativLength();
void nullInputZeroOrNegativeLength_data();
void nullInputZeroOrNegativeLength();
void retainNullness_data();
void retainNullness();
@ -2615,7 +2615,7 @@ struct DontCrashAtExit {
}
} dontCrashAtExit;
void tst_QTextCodec::nullInputZeroOrNegativLength_data()
void tst_QTextCodec::nullInputZeroOrNegativeLength_data()
{
QTest::addColumn<QString>("codecName");
QTest::addColumn<int>("mibEnum");
@ -2684,7 +2684,7 @@ void tst_QTextCodec::nullInputZeroOrNegativLength_data()
#endif
}
void tst_QTextCodec::nullInputZeroOrNegativLength()
void tst_QTextCodec::nullInputZeroOrNegativeLength()
{
QFETCH(QString, codecName);
QFETCH(int, mibEnum);