clang-format: copy latest and re-format

clang-format-17 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.

Change-Id: I094854676307faf5395459925ff0750f1402e578
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/user_mgr_test.cpp b/test/user_mgr_test.cpp
index cf623ae..85a8b0a 100644
--- a/test/user_mgr_test.cpp
+++ b/test/user_mgr_test.cpp
@@ -273,19 +273,17 @@
 
         ON_CALL(*this, executeUserAdd(testing::_, testing::_, testing::_,
                                       testing::Eq(true)))
-            .WillByDefault(
-                [this]() {
+            .WillByDefault([this]() {
             ON_CALL(*this, isUserEnabled).WillByDefault(testing::Return(true));
             testing::Return();
-            });
+        });
 
         ON_CALL(*this, executeUserAdd(testing::_, testing::_, testing::_,
                                       testing::Eq(false)))
-            .WillByDefault(
-                [this]() {
+            .WillByDefault([this]() {
             ON_CALL(*this, isUserEnabled).WillByDefault(testing::Return(false));
             testing::Return();
-            });
+        });
 
         ON_CALL(*this, executeUserDelete).WillByDefault(testing::Return());
 
@@ -301,19 +299,17 @@
 
         ON_CALL(*this,
                 executeUserModifyUserEnable(testing::_, testing::Eq(true)))
-            .WillByDefault(
-                [this]() {
+            .WillByDefault([this]() {
             ON_CALL(*this, isUserEnabled).WillByDefault(testing::Return(true));
             testing::Return();
-            });
+        });
 
         ON_CALL(*this,
                 executeUserModifyUserEnable(testing::_, testing::Eq(false)))
-            .WillByDefault(
-                [this]() {
+            .WillByDefault([this]() {
             ON_CALL(*this, isUserEnabled).WillByDefault(testing::Return(false));
             testing::Return();
-            });
+        });
 
         ON_CALL(*this, executeGroupCreation(testing::_))
             .WillByDefault(testing::Return());