meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: Ia02e00493fe1b5a305e23b5761f42cc830f702ea
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/meson.build b/test/meson.build
index 34f8c32..6fcfd04 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -8,34 +8,31 @@
                 dependency('threads'),
                 gtest_proj.dependency('gtest'),
                 gtest_proj.dependency('gtest_main'),
-            ]
+            ],
         )
         gmock_dep = gtest_proj.dependency('gmock')
-  else
+    else
         assert(
             not get_option('tests').enabled(),
-            'Googletest is required if tests are enabled'
+            'Googletest is required if tests are enabled',
         )
-  endif
+    endif
 endif
 
-test_sources = [
-  '../integrity_algo.cpp',
-  '../crypt_algo.cpp',
-]
+test_sources = ['../integrity_algo.cpp', '../crypt_algo.cpp']
 
-tests = [
-  'cipher.cpp',
-]
+tests = ['cipher.cpp']
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t,
-                     test_sources,
-                     include_directories: ['..'],
-                     dependencies: [
-                         gtest_dep,
-                         gmock_dep,
-                         libcrypto_dep,
-                         ]),
-       workdir: meson.current_source_dir())
-endforeach
\ No newline at end of file
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t,
+            test_sources,
+            include_directories: ['..'],
+            dependencies: [gtest_dep, gmock_dep, libcrypto_dep],
+        ),
+        workdir: meson.current_source_dir(),
+    )
+endforeach