Format meson files with meson.format

Meson 1.5.0 introduced a new feature to format all the meson
files. Formatting all the meson files is now as simple as running
`meson format -i -r` command in the repository root folder.

more details : https://mesonbuild.com/Commands.html#format

Change-Id: I9c5468cc502ae78b7a055e2de2a10296930cb9ec
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/common/test/meson.build b/common/test/meson.build
index b6f7012..e26d75b 100644
--- a/common/test/meson.build
+++ b/common/test/meson.build
@@ -1,23 +1,26 @@
-common_test_src = declare_dependency(
-          sources: [
-            '../utils.cpp'])
+common_test_src = declare_dependency(sources: ['../utils.cpp'])
 
-tests = [
-  'pldm_utils_test',
-]
+tests = ['pldm_utils_test']
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t + '.cpp',
-                     implicit_include_directories: false,
-                     dependencies: [
-                         common_test_src,
-                         gmock,
-                         gtest,
-                         libpldm_dep,
-                         nlohmann_json_dep,
-                         phosphor_dbus_interfaces,
-                         phosphor_logging_dep,
-                         libpldmutils,
-                         sdbusplus]),
-       workdir: meson.current_source_dir())
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            implicit_include_directories: false,
+            dependencies: [
+                common_test_src,
+                gmock,
+                gtest,
+                libpldm_dep,
+                nlohmann_json_dep,
+                phosphor_dbus_interfaces,
+                phosphor_logging_dep,
+                libpldmutils,
+                sdbusplus,
+            ],
+        ),
+        workdir: meson.current_source_dir(),
+    )
 endforeach