clang-format: copy latest and re-format
clang-format-16 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: Icbc50d46e84ee7ef756705e2b19741439a325074
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/sensor_manager_unittest.cpp b/test/sensor_manager_unittest.cpp
index 85865a8..b5b67c7 100644
--- a/test/sensor_manager_unittest.cpp
+++ b/test/sensor_manager_unittest.cpp
@@ -53,8 +53,8 @@
std::string name = "name";
std::string type = "invalid";
int64_t timeout = 1;
- std::unique_ptr<Sensor> sensor =
- std::make_unique<SensorMock>(name, timeout);
+ std::unique_ptr<Sensor> sensor = std::make_unique<SensorMock>(name,
+ timeout);
Sensor* sensor_ptr = sensor.get();
s.addSensor(type, name, std::move(sensor));