diff options
Diffstat (limited to 'test/log')
-rw-r--r-- | test/log/log_process.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/log/log_process.cpp b/test/log/log_process.cpp index 2484c58f..966b80cf 100644 --- a/test/log/log_process.cpp +++ b/test/log/log_process.cpp @@ -26,8 +26,9 @@ #include "test.h" -using namespace std; using namespace libcamera; +using namespace std; +using namespace std::chrono_literals; static const string message("hello from the child"); @@ -80,7 +81,7 @@ protected: return TestFail; } - timeout.start(200); + timeout.start(200ms); while (timeout.isRunning()) dispatcher->processEvents(); |