Test: don't discard result of QFile::open

QVERIFY that the file could be opened, fail the test if it couldn't.

Pick-to: 6.10 6.9
Change-Id: Iab9b819e70b71fade6a58286edff8e022748d9f6
Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
This commit is contained in:
Volker Hilsheimer 2025-06-11 12:56:55 +02:00
parent 3f0261ebe3
commit 33dc247b6a

View File

@ -1995,7 +1995,7 @@ void tst_QFileInfo::brokenShortcut()
QString linkName("borkenlink.lnk");
QFile::remove(linkName);
QFile file(linkName);
file.open(QFile::WriteOnly);
QVERIFY(file.open(QFile::WriteOnly));
file.write("b0rk");
file.close();