meson: reformat with meson formatter

Apply the `meson format` results.

Change-Id: Id3da51b0ab2cd90f7bb79bd7b613b2226672a802
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/subprojects/ncsid/test/meson.build b/subprojects/ncsid/test/meson.build
index 681306f..f142318 100644
--- a/subprojects/ncsid/test/meson.build
+++ b/subprojects/ncsid/test/meson.build
@@ -15,58 +15,60 @@
 gtest = dependency('gtest', main: true, disabler: true, required: false)
 gmock = dependency('gmock', disabler: true, required: false)
 if not gtest.found() or not gmock.found()
-  gtest_proj = import('cmake').subproject(
-    'googletest',
-    cmake_options: [
-      '-DCMAKE_CXX_FLAGS=-Wno-pedantic',
-    ],
-    required: false)
-  if gtest_proj.found()
-    gtest = declare_dependency(
-      dependencies: [
-        dependency('threads'),
-        gtest_proj.dependency('gtest'),
-        gtest_proj.dependency('gtest_main'),
-      ])
-    gmock = gtest_proj.dependency('gmock')
-  else
-    assert(not build_tests.allowed(), 'Googletest is required')
-  endif
+    gtest_proj = import('cmake').subproject(
+        'googletest',
+        cmake_options: ['-DCMAKE_CXX_FLAGS=-Wno-pedantic'],
+        required: false,
+    )
+    if gtest_proj.found()
+        gtest = declare_dependency(
+            dependencies: [
+                dependency('threads'),
+                gtest_proj.dependency('gtest'),
+                gtest_proj.dependency('gtest_main'),
+            ],
+        )
+        gmock = gtest_proj.dependency('gmock')
+    else
+        assert(not build_tests.allowed(), 'Googletest is required')
+    endif
 endif
 
 tests = [
-  'iface_test',
-  'sock_test',
-  #'ncsi_test',  # TODO: Re-enable when fixed
+    'iface_test',
+    'sock_test',
+    #'ncsi_test',  # TODO: Re-enable when fixed
 ]
 
 ncsid_test_headers = include_directories('.')
 
 ncsid_test_lib = static_library(
-  'ncsid_test',
-  [
-    'net_iface_mock.cpp',
-    'nic_mock.cpp',
-  ],
-  include_directories: ncsid_test_headers,
-  implicit_include_directories: false,
-  dependencies: ncsid)
+    'ncsid_test',
+    ['net_iface_mock.cpp', 'nic_mock.cpp'],
+    include_directories: ncsid_test_headers,
+    implicit_include_directories: false,
+    dependencies: ncsid,
+)
 
 ncsid_test = declare_dependency(
-  dependencies: ncsid,
-  include_directories: ncsid_test_headers,
-  link_with: ncsid_test_lib)
+    dependencies: ncsid,
+    include_directories: ncsid_test_headers,
+    link_with: ncsid_test_lib,
+)
 
 foreach t : tests
-  test(t, executable(t.underscorify(), t + '.cpp',
-                     implicit_include_directories: false,
-                     dependencies: [gtest, gmock, ncsid_test]))
+    test(
+        t,
+        executable(
+            t.underscorify(),
+            t + '.cpp',
+            implicit_include_directories: false,
+            dependencies: [gtest, gmock, ncsid_test],
+        ),
+    )
 endforeach
 
-script_tests = [
-  'normalize_ip_test',
-  'normalize_mac_test',
-]
+script_tests = ['normalize_ip_test', 'normalize_mac_test']
 
 script_env = environment()
 script_deps = []
@@ -76,6 +78,12 @@
 script_deps += normalize_mac
 
 foreach st : script_tests
-  test(st, find_program('bash'), args: files(st + '.sh'),
-    protocol: 'tap', env: script_env, depends: script_deps)
+    test(
+        st,
+        find_program('bash'),
+        args: files(st + '.sh'),
+        protocol: 'tap',
+        env: script_env,
+        depends: script_deps,
+    )
 endforeach