diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-03 19:41:58 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-04 13:51:39 +0200 |
commit | 5319f16ba723e654eaf347f7d5d6957e57bd6d32 (patch) | |
tree | 4f105f7e5ec0ff733515ec576907f4ddb4c5dbdc | |
parent | b3ca93a3173af1d16edf5316ede217a202827c01 (diff) | |
download | libquotient-5319f16ba723e654eaf347f7d5d6957e57bd6d32.tar.gz libquotient-5319f16ba723e654eaf347f7d5d6957e57bd6d32.zip |
quotest: clean up the room state after testing
-rw-r--r-- | tests/quotest.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index 622a8cfb..dc84364f 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -772,6 +772,11 @@ TEST_IMPL(visitResources) void TestManager::conclude() { + // Clean up the room (best effort) + auto* room = testSuite->room(); + room->setTopic({}); + room->localUser()->rename({}); + QString succeededRec { QString::number(succeeded.size()) % " of " % QString::number(succeeded.size() + failed.size() + running.size()) @@ -800,7 +805,6 @@ void TestManager::conclude() // targetRoom->postHtmlText(...) // .then(this, &TestManager::finalize); // Qt-style or // .then([this] { finalize(); }); // STL-style - auto* room = testSuite->room(); auto txnId = room->postHtmlText(plainReport, htmlReport); // Now just wait until all the pending events reach the server connectUntil(room, &Room::messageSent, this, [this, room, plainReport] { |