some files just cannot sync on windows: get automated tests to work

fix one automated test knowing the platform limitations of windows

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
pull/6713/head
Matthieu Gallien 2024-04-29 11:48:30 +02:00 committed by Matthieu Gallien
parent d228ec445f
commit 9ed87bf2ad
1 changed files with 3 additions and 2 deletions

View File

@ -347,9 +347,10 @@ private slots:
QCOMPARE(completeSpy.findItem(fileWithSpaces5)->_status, SyncFileItem::Status::Success);
QCOMPARE(completeSpy.findItem(fileWithSpaces6)->_status, SyncFileItem::Status::Success);
#ifdef Q_OS_WINDOWS
QEXPECT_FAIL("", "", Continue);
#endif
QCOMPARE(completeSpy.findItem(QStringLiteral(" with spaces "))->_status, SyncFileItem::Status::NormalError);
#else
QCOMPARE(completeSpy.findItem(QStringLiteral(" with spaces "))->_status, SyncFileItem::Status::Success);
#endif
}
void testCreateFileWithTrailingSpaces_remoteDontGetRenamedAutomatically()