meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: Ic556a6e6065b9df4cf778ba91d7bf5619f2955ca
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/meson.build b/test/meson.build
index a8cb358..7c88308 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -8,35 +8,37 @@
                 dependency('threads'),
                 gtest_proj.dependency('gtest'),
                 gtest_proj.dependency('gtest_main'),
-            ]
+            ],
         )
         gmock_dep = gtest_proj.dependency('gmock')
-  else
+    else
         assert(
             not get_option('tests').allowed(),
-            'Googletest is required if tests are enabled'
+            'Googletest is required if tests are enabled',
         )
-  endif
+    endif
 endif
 
-dump = declare_dependency(
-         sources: [
-        '../dump_serialize.cpp'
-    ])
+dump = declare_dependency(sources: ['../dump_serialize.cpp'])
 
-tests = [
-    'debug_inif_test',
-]
+tests = ['debug_inif_test']
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t + '.cpp',
-                     include_directories: ['.', '../'],
-                     implicit_include_directories: false,
-                     dependencies:[ gtest_dep,
-                                    gmock_dep,
-                                    dump,
-                                    phosphor_logging_dep,
-                                    cereal_dep,
-                                    ]),
-       workdir: meson.current_source_dir())
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            include_directories: ['.', '../'],
+            implicit_include_directories: false,
+            dependencies: [
+                gtest_dep,
+                gmock_dep,
+                dump,
+                phosphor_logging_dep,
+                cereal_dep,
+            ],
+        ),
+        workdir: meson.current_source_dir(),
+    )
 endforeach