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/test/meson.build b/test/meson.build
index a1b3549..96fbeaf 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -1,18 +1,17 @@
 pldmd_inc = include_directories('../')
-test_src = declare_dependency(
-          include_directories:pldmd_inc)
+test_src = declare_dependency(include_directories: pldmd_inc)
 
-tests = [
-  'pldmd_registration_test',
-]
+tests = ['pldmd_registration_test']
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t + '.cpp',
-                     implicit_include_directories: false,
-                     dependencies: [
-                         libpldm_dep,
-                         nlohmann_json_dep,
-                         gtest,
-                         test_src]),
-       workdir: meson.current_source_dir())
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            implicit_include_directories: false,
+            dependencies: [libpldm_dep, nlohmann_json_dep, gtest, test_src],
+        ),
+        workdir: meson.current_source_dir(),
+    )
 endforeach