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: I509c8567baedea7c86787f2e880900da13ebfc9f
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/post_reporter_test.cpp b/test/post_reporter_test.cpp
index 8f7f503..ef0d0d5 100644
--- a/test/post_reporter_test.cpp
+++ b/test/post_reporter_test.cpp
@@ -20,12 +20,9 @@
{
protected:
PostReporterTest() : bus_mock(), bus(sdbusplus::get_mocked_new(&bus_mock))
- {
- }
+ {}
- ~PostReporterTest()
- {
- }
+ ~PostReporterTest() {}
NiceMock<sdbusplus::SdBusMock> bus_mock;
sdbusplus::bus_t bus;
@@ -33,7 +30,6 @@
TEST_F(PostReporterTest, EmitsObjectsOnExpectedDbusPath)
{
-
EXPECT_CALL(bus_mock,
sd_bus_emit_object_added(IsNull(), StrEq(snoopObject)))
.WillOnce(Return(0));