meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I73471b8ae6b57b537b4879f52f5db3c7c06f30f0
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/test/meson.build b/test/meson.build
index 94b8b0f..61965df 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -8,13 +8,13 @@
dependency('threads'),
gtest_proj.dependency('gtest'),
gtest_proj.dependency('gtest_main'),
- ]
+ ],
)
gmock_dep = gtest_proj.dependency('gmock')
else
assert(
not get_option('tests').allowed(),
- 'Googletest is required if tests are enabled'
+ 'Googletest is required if tests are enabled',
)
endif
endif
@@ -23,14 +23,9 @@
'ldap_config_test',
executable(
'ldap_config_test',
- ['ldap_config_test.cpp',
- 'utils_test.cpp'],
+ ['ldap_config_test.cpp', 'utils_test.cpp'],
include_directories: '..',
- dependencies: [
- gtest_dep,
- gmock_dep,
- phosphor_ldap_conf_dep,
- ],
+ dependencies: [gtest_dep, gmock_dep, phosphor_ldap_conf_dep],
link_args: ['-lldap'],
),
)
@@ -41,10 +36,6 @@
'user_mgr_test',
'user_mgr_test.cpp',
include_directories: '..',
- dependencies: [
- gtest_dep,
- gmock_dep,
- user_manager_dep,
- ],
+ dependencies: [gtest_dep, gmock_dep, user_manager_dep],
),
)