meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I116103d8e0994e09ecb6381f5bb7d564608826b2
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/bmc/log-handler/test/meson.build b/bmc/log-handler/test/meson.build
index 36b4917..475f798 100644
--- a/bmc/log-handler/test/meson.build
+++ b/bmc/log-handler/test/meson.build
@@ -1,14 +1,15 @@
-log_tests = [
- 'canhandle_enumerate',
- 'createhandler']
+log_tests = ['canhandle_enumerate', 'createhandler']
foreach t : log_tests
- test(
- t,
- executable(
- t.underscorify(), 'log_' + t + '_unittest.cpp',
- build_by_default: false,
- implicit_include_directories: false,
- include_directories: [root_inc, bmc_test_inc, log_inc],
- dependencies: [log_dep, blobs_dep, gtest, gmock]))
+ test(
+ t,
+ executable(
+ t.underscorify(),
+ 'log_' + t + '_unittest.cpp',
+ build_by_default: false,
+ implicit_include_directories: false,
+ include_directories: [root_inc, bmc_test_inc, log_inc],
+ dependencies: [log_dep, blobs_dep, gtest, gmock],
+ ),
+ )
endforeach