Format meson files

Format with

meson format -i $(git ls-files | grep "meson.*$")

Tested: code compiles.  Whitespace only.

Change-Id: I63f2e78aeb7924f9560c3b45ba3b5c4059c47e12
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/tests/meson.build b/tests/meson.build
index 1684d65..abfc497 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -19,11 +19,7 @@
     endif
 endif
 
-sources = [
-    'ir-tests.cpp',
-    'test-utils.cpp',
-    'base64_test.cpp',
-]
+sources = ['ir-tests.cpp', 'test-utils.cpp', 'base64_test.cpp']
 
 test_include_dirs = ['.', '..']
 
@@ -33,6 +29,12 @@
     implicit_include_directories: false,
     include_directories: include_directories(test_include_dirs),
     cpp_args: '-fpermissive',
-    dependencies: [libcper_parse_dep, libcper_generate_dep, json_c_dep, gtest, gmock],
+    dependencies: [
+        libcper_parse_dep,
+        libcper_generate_dep,
+        json_c_dep,
+        gtest,
+        gmock,
+    ],
 )
 test('test-cper-tests', cper_tests)