add .clang-format

Change-Id: I94ce26d595367e08d6fb3734535bcd855f1b1473
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/test/hwmon_unittest.cpp b/test/hwmon_unittest.cpp
index 035d098..1c538c7 100644
--- a/test/hwmon_unittest.cpp
+++ b/test/hwmon_unittest.cpp
@@ -3,10 +3,9 @@
 #include <gmock/gmock.h>
 #include <gtest/gtest.h>
 
-TEST(HwmonTest, InvalidType) {
+TEST(HwmonTest, InvalidType)
+{
 
-  hwmon::Attributes attrs;
-  EXPECT_FALSE(hwmon::getAttributes("invalid", attrs));
-
+    hwmon::Attributes attrs;
+    EXPECT_FALSE(hwmon::getAttributes("invalid", attrs));
 }
-