trivial: typedesc to typename

This commit is contained in:
Pavel Šimerda
2013-05-16 14:43:25 +02:00
parent f714c1033f
commit cd09159201

View File

@@ -230,7 +230,7 @@ test_slave (int master, int type, SignalData *link_added, SignalData *master_cha
} }
static void static void
test_virtual (NMLinkType link_type, const char *link_typedesc) test_virtual (NMLinkType link_type, const char *link_typename)
{ {
int ifindex; int ifindex;
char *value; char *value;
@@ -246,7 +246,7 @@ test_virtual (NMLinkType link_type, const char *link_typedesc)
ifindex = nm_platform_link_get_ifindex (DEVICE_NAME); ifindex = nm_platform_link_get_ifindex (DEVICE_NAME);
g_assert (ifindex >= 0); g_assert (ifindex >= 0);
g_assert_cmpint (nm_platform_link_get_type (ifindex), ==, link_type); g_assert_cmpint (nm_platform_link_get_type (ifindex), ==, link_type);
g_assert_cmpstr (nm_platform_link_get_type_name (ifindex), ==, link_typedesc); g_assert_cmpstr (nm_platform_link_get_type_name (ifindex), ==, link_typename);
accept_signal (link_added); accept_signal (link_added);
/* Add again */ /* Add again */