Revert "[Tizen] Appendix log for ttrace + Print keycode and timestamp"
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-Mutex.cpp
index a15d26f..dfca24e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -51,8 +51,8 @@ int UtcDaliMutexSingleThread(void)
   DALI_TEST_EQUALS(false, mutex3.IsLocked(), TEST_LOCATION);
 
   {
-    Mutex mutex4;
-    Mutex mutex5(std::move(mutex4)); // move constructor
+    Mutex             mutex4;
+    Mutex             mutex5(std::move(mutex4)); // move constructor
     Mutex::ScopedLock lock(mutex5);
     DALI_TEST_EQUALS(true, mutex5.IsLocked(), TEST_LOCATION);
   }