Adapt tests to recent changes in URL handling

This commit is contained in:
Martchus 2024-01-28 21:35:25 +01:00
parent 736806eba5
commit 6145268dd3
1 changed files with 1 additions and 1 deletions

View File

@ -676,7 +676,7 @@ void ConnectionTests::testRequestingRescan()
bool errorOccured = false;
const auto errorHandler = [&errorOccured](const QString &message) {
errorOccured |= message.startsWith(QStringLiteral("Unable to request rescan: Error transferring"))
&& message.endsWith(QStringLiteral("/rest/db/scan?folder=non-existing-dir&sub=sub/path - server replied: Internal Server Error"));
&& message.endsWith(QStringLiteral("/rest/db/scan?folder=non-existing-dir&sub=sub%2Fpath - server replied: Internal Server Error"));
};
waitForSignals(bind(&SyncthingConnection::rescan, &m_connection, QStringLiteral("non-existing-dir"), QStringLiteral("sub/path")), 5000,
connectionSignal(&SyncthingConnection::error, errorHandler, &errorOccured));