diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-19 10:43:33 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-21 13:15:02 +0100 |
commit | 24a562cc64e8fac6c55108ae2b7b6997ecdd2010 (patch) | |
tree | 34a70e3645ea3d57ee487190f3a571d97c74f087 | |
parent | e5256e0b1e4c43ce96d99d1b82ca5d98a1baded6 (diff) | |
download | libquotient-24a562cc64e8fac6c55108ae2b7b6997ecdd2010.tar.gz libquotient-24a562cc64e8fac6c55108ae2b7b6997ecdd2010.zip |
Quotest: add a missing \n in the output
-rw-r--r-- | quotest/quotest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 8703efb2..7bd9c5c3 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -214,7 +214,7 @@ TestManager::TestManager(int& argc, char** argv) // Big countdown watchdog QTimer::singleShot(180000, this, [this] { - clog << "Time is up, stopping the session"; + clog << "Time is up, stopping the session\n"; if (testSuite) conclude(); else |