meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: I0931eb90e92b905028109030d225123a822597df
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/src/smbios-ipmi-blobs/test/meson.build b/src/smbios-ipmi-blobs/test/meson.build
index 6e2c28e..e4e2828 100644
--- a/src/smbios-ipmi-blobs/test/meson.build
+++ b/src/smbios-ipmi-blobs/test/meson.build
@@ -2,26 +2,22 @@
 gmock = dependency('gmock')
 
 tests = [
-  'handler_unittest',
-  'handler_open_unittest',
-  'handler_readwrite_unittest',
-  'handler_statclose_unittest',
+    'handler_unittest',
+    'handler_open_unittest',
+    'handler_readwrite_unittest',
+    'handler_statclose_unittest',
 ]
 
 foreach t : tests
-  test(
-    t,
-    executable(
-      t.underscorify(),
-      t + '.cpp',
-      '../handler.cpp',
-      include_directories: ['../', root_inc],
-      dependencies: [
-        smbiosstore_common_deps,
-        gtest,
-        gmock
-      ]
-    ),
-    protocol: 'gtest'
-  )
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            '../handler.cpp',
+            include_directories: ['../', root_inc],
+            dependencies: [smbiosstore_common_deps, gtest, gmock],
+        ),
+        protocol: 'gtest',
+    )
 endforeach