meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I19b98dd511766ef0a8c08913436ac5fba22bf3ef
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/meson.build b/test/meson.build
index 13809f1..1dc52ee 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -3,18 +3,17 @@
phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
sdbusplus = dependency('sdbusplus')
-tests = [
- 'post_reporter_test',
-]
+tests = ['post_reporter_test']
foreach t : tests
- test(t, executable(t.underscorify(), t + '.cpp',
- include_directories: postd_headers,
- implicit_include_directories: false,
- dependencies: [
- gtest,
- gmock,
- phosphor_dbus_interfaces,
- sdbusplus,
- ]))
+ test(
+ t,
+ executable(
+ t.underscorify(),
+ t + '.cpp',
+ include_directories: postd_headers,
+ implicit_include_directories: false,
+ dependencies: [gtest, gmock, phosphor_dbus_interfaces, sdbusplus],
+ ),
+ )
endforeach