aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/quotest.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp
index dc84364f..afe26f7a 100644
--- a/tests/quotest.cpp
+++ b/tests/quotest.cpp
@@ -499,17 +499,16 @@ TEST_IMPL(changeName)
if (localUser != arrivedUser)
return false;
- localUser->rename({});
const auto& arrivedNewName = arrivedUser->name(targetRoom);
// Old names may diverge e.g. because the original name
// hasn't been known to Quotient
if (newName == arrivedNewName)
FINISH_TEST(true);
- clog << "Names mismatch: found" << newName.toStdString()
- << "instead of" << arrivedNewName.toStdString()
- << endl;
- FAIL_TEST();
+ clog << "Names mismatch: found " << newName.toStdString()
+ << " instead of " << arrivedNewName.toStdString()
+ << "; waiting for the next change" << endl;
+ return false;
});
return false;
}