1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #3060 from Lotterleben/ng_netif_tests_rm_warn

unittests: rm warning for tests-ipv6_netif
This commit is contained in:
Martine Lenders 2015-05-25 23:26:18 +02:00
commit 55a48f48cc

View File

@ -87,7 +87,7 @@ static void test_netif_add__success_with_ipv6(void)
ng_netif_add(DEFAULT_TEST_NETIF);
TEST_ASSERT_NOT_NULL((pid_num = ng_netif_get(pids)));
TEST_ASSERT_EQUAL_INT(1, (pid_num = ng_netif_get(pids)));
TEST_ASSERT_EQUAL_INT(1, pid_num);
TEST_ASSERT_EQUAL_INT(DEFAULT_TEST_NETIF, pids[0]);
TEST_ASSERT_NOT_NULL((entry = ng_ipv6_netif_get(DEFAULT_TEST_NETIF)));