summary refs log tree commit diff
path: root/libnm-util/tests
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2019-03-26 23:25:23 +0100
committerMichael Biebl <biebl@debian.org>2019-03-26 23:25:23 +0100
commit9a6dcbf895f9da01768e64b73cec88c16157d91e (patch)
treea359958930d731e9f1b59344642e10754419fe84 /libnm-util/tests
parent964ae8cc391520440cf5aa13e2b9cc34850ea6c2 (diff)
New upstream version 1.16.0 upstream/1.16.0
Diffstat (limited to 'libnm-util/tests')
-rw-r--r--libnm-util/tests/meson.build10
-rw-r--r--libnm-util/tests/test-general.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/libnm-util/tests/meson.build b/libnm-util/tests/meson.build
index 49c35a51..5e8b84fa 100644
--- a/libnm-util/tests/meson.build
+++ b/libnm-util/tests/meson.build
@@ -2,7 +2,7 @@ deps = [
   dbus_dep,
   dbus_glib_dep,
   libnm_util_dep,
-  shared_dep
+  shared_nm_utils_base_dep,
 ]
 
 cflags = common_cflags + [
@@ -15,7 +15,7 @@ test_libnm_linking = executable(
   test,
   test + '.c',
   dependencies: deps + [libnm_dep],
-  c_args: cflags
+  c_args: cflags,
 )
 
 test_units = [
@@ -24,7 +24,7 @@ test_units = [
   ['test-secrets', [], []],
   ['test-setting-8021x', [], []],
   ['test-setting-dcb', [], []],
-  ['test-settings-defaults', [], []]
+  ['test-settings-defaults', [], []],
 ]
 
 foreach test_unit: test_units
@@ -34,12 +34,12 @@ foreach test_unit: test_units
     dependencies: deps,
     c_args: cflags,
     link_with: test_unit[1],
-    link_depends: test_unit[2]
+    link_depends: test_unit[2],
   )
 
   test(
     'libnm-util/' + test_unit[0],
     test_script,
-    args: test_args + [exe.full_path()]
+    args: test_args + [exe.full_path()],
   )
 endforeach
diff --git a/libnm-util/tests/test-general.c b/libnm-util/tests/test-general.c
index 304797a9..9e097f19 100644
--- a/libnm-util/tests/test-general.c
+++ b/libnm-util/tests/test-general.c
@@ -2314,7 +2314,7 @@ test_connection_verify_sets_interface_name (void)
 
 	g_assert_cmpstr (nm_connection_get_interface_name (con), ==, NULL);
 
-	/* for backward compatiblity, normalizes the interface name */
+	/* for backward compatibility, normalizes the interface name */
 	success = nm_connection_verify (con, &error);
 	g_assert (success && !error);
 
@@ -2373,7 +2373,7 @@ test_connection_normalize_virtual_iface_name (void)
 	g_assert_cmpstr (nm_connection_get_interface_name (con), ==, IFACE_NAME);
 	g_assert_cmpstr (nm_setting_vlan_get_interface_name (s_vlan), ==, IFACE_VIRT);
 
-	/* for backward compatiblity, normalizes the interface name */
+	/* for backward compatibility, normalizes the interface name */
 	success = nm_connection_verify (con, &error);
 	g_assert (success && !error);