tests: fixed compilation of tst_qtextstream
Compilation of this autotest was broken by a strange qmake bug, QTBUG-19393. Work around it by putting a space between two string literals. Change-Id: I494c486dd11858eeaf98d7a04021c74fcf3cbba7
This commit is contained in:
parent
449b8a9317
commit
9a6a58a95a
@ -2580,7 +2580,7 @@ void tst_QTextStream::readBomSeekBackReadBomAgain()
|
||||
QFile::remove("utf8bom");
|
||||
QFile file("utf8bom");
|
||||
QVERIFY(file.open(QFile::ReadWrite));
|
||||
file.write("\xef\xbb\xbf""Andreas");
|
||||
file.write("\xef\xbb\xbf" "Andreas");
|
||||
file.seek(0);
|
||||
QCOMPARE(file.pos(), qint64(0));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user