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/fw-update/test/meson.build b/fw-update/test/meson.build
index 5af5dc9..e419ccf 100644
--- a/fw-update/test/meson.build
+++ b/fw-update/test/meson.build
@@ -1,33 +1,37 @@
 fw_update_test_src = declare_dependency(
-          sources: [
-            '../activation.cpp',
-            '../inventory_manager.cpp',
-            '../package_parser.cpp',
-            '../device_updater.cpp',
-            '../update_manager.cpp',
-            '../../common/utils.cpp',
-          ])
+    sources: [
+        '../activation.cpp',
+        '../inventory_manager.cpp',
+        '../package_parser.cpp',
+        '../device_updater.cpp',
+        '../update_manager.cpp',
+        '../../common/utils.cpp',
+    ],
+)
 
-tests = [
-  'inventory_manager_test',
-  'package_parser_test',
-  'device_updater_test'
-]
+tests = ['inventory_manager_test', 'package_parser_test', 'device_updater_test']
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t + '.cpp',
-                     implicit_include_directories: false,
-                     include_directories: '../../pldmd',
-                     dependencies: [
-                         fw_update_test_src,
-                         gmock,
-                         gtest,
-                         libpldm_dep,
-                         libpldmutils,
-                         nlohmann_json_dep,
-                         phosphor_dbus_interfaces,
-                         phosphor_logging_dep,
-                         sdbusplus,
-                         sdeventplus]),
-       workdir: meson.current_source_dir())
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            implicit_include_directories: false,
+            include_directories: '../../pldmd',
+            dependencies: [
+                fw_update_test_src,
+                gmock,
+                gtest,
+                libpldm_dep,
+                libpldmutils,
+                nlohmann_json_dep,
+                phosphor_dbus_interfaces,
+                phosphor_logging_dep,
+                sdbusplus,
+                sdeventplus,
+            ],
+        ),
+        workdir: meson.current_source_dir(),
+    )
 endforeach