fix one automated test knowing the platform limitations of windows
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
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()