diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-03 19:13:24 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-03 19:15:09 +0200 |
commit | b3ca93a3173af1d16edf5316ede217a202827c01 (patch) | |
tree | b4561ac75a7d26e484245b7db52b1af8eb98fc4d | |
parent | 82bcc316d736bd04174876efde38827c34181c33 (diff) | |
download | libquotient-b3ca93a3173af1d16edf5316ede217a202827c01.tar.gz libquotient-b3ca93a3173af1d16edf5316ede217a202827c01.zip |
quotest: use #test instead of #quotient in loadMembers test
#quotient:matrix.org is a primary channel to talk to users and
developers, and events produced by changeName test come really noisy.
#test:matrix.org is a perfect place to test things out, OTOH.
-rw-r--r-- | tests/quotest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index ce714a84..622a8cfb 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -305,11 +305,11 @@ void TestManager::doTests() TEST_IMPL(loadMembers) { // Trying to load members from another (larger) room - auto* r = connection()->roomByAlias(QStringLiteral("#quotient:matrix.org"), - JoinState::Join); + const auto& testRoomAlias = QStringLiteral("#test:matrix.org"); + auto* r = connection()->roomByAlias(testRoomAlias, JoinState::Join); if (!r) { - clog << "#quotient:matrix.org is not found in the test user's rooms" - << endl; + clog << testRoomAlias.toStdString() + << " is not found in the test user's rooms" << endl; FAIL_TEST(); } // It's not exactly correct because an arbitrary server might not support |