Fix typo in logging of tests

This commit is contained in:
Martchus 2021-08-07 16:03:40 +02:00
parent 2152ae8a30
commit f2db5e737c
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ set(META_APP_CATEGORIES "Network;FileTransfer")
set(META_GUI_OPTIONAL false)
set(META_VERSION_MAJOR 1)
set(META_VERSION_MINOR 1)
set(META_VERSION_PATCH 9)
set(META_VERSION_PATCH 10)
set(META_VERSION_EXACT_SONAME ON)
set(META_ADD_DEFAULT_CPP_UNIT_TEST_APPLICATION ON)

View File

@ -319,7 +319,7 @@ void ConnectionTests::testConnection()
void ConnectionTests::testErrorCases()
{
cerr << "\n - Error handling in case of insufficient conficuration ..." << endl;
cerr << "\n - Error handling in case of insufficient configuration ..." << endl;
waitForConnection(defaultConnect(), 1000, connectionSignal(&SyncthingConnection::error, [](const QString &errorMessage) {
CPPUNIT_ASSERT_EQUAL(QStringLiteral("Connection configuration is insufficient."), errorMessage);
}));