diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-04 13:26:58 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-08-04 13:26:58 +0200 |
commit | 623212f538123606b3c27849c84f833d45ce9f02 (patch) | |
tree | 181b642cba8a6767c71f513ca86c92a8d20f4d29 | |
parent | 5849686e96b4a7277f2b2152ff3aa76cc6d0f18e (diff) | |
download | libquotient-623212f538123606b3c27849c84f833d45ce9f02.tar.gz libquotient-623212f538123606b3c27849c84f833d45ce9f02.zip |
Quotest: fix whitespacesmissing ina log line
-rw-r--r-- | tests/quotest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index dc84364f..ed5c34b1 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -506,8 +506,8 @@ TEST_IMPL(changeName) if (newName == arrivedNewName) FINISH_TEST(true); - clog << "Names mismatch: found" << newName.toStdString() - << "instead of" << arrivedNewName.toStdString() + clog << "Names mismatch: found " << newName.toStdString() + << " instead of " << arrivedNewName.toStdString() << endl; FAIL_TEST(); }); |