Skip to content

Commit

Permalink
Merge branch 'netapi/api/use-pkt_t' into uart_net
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Jan 14, 2015
2 parents 39baf32 + 86e9581 commit e5e3f4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unittests/tests-pktbuf/tests-pktbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ static void test_pktbuf_copy_efault(void)
TEST_ASSERT_EQUAL_STRING("abcd", pkt->payload_data);
TEST_ASSERT_EQUAL_INT(5, pkt->payload_len);
}
#endif

static void test_pktbuf_copy_einval2(void)
{
Expand All @@ -243,6 +242,7 @@ static void test_pktbuf_copy_einval2(void)
TEST_ASSERT_EQUAL_STRING("abcd", pkt->payload_data);
TEST_ASSERT_EQUAL_INT(5, pkt->payload_len);
}
#endif

static void test_pktbuf_copy_data_len_too_long(void)
{
Expand Down Expand Up @@ -664,8 +664,8 @@ Test *tests_pktbuf_tests(void)
#ifdef DEVELHELP
new_TestFixture(test_pktbuf_copy_efault),
new_TestFixture(test_pktbuf_copy_einval),
#endif
new_TestFixture(test_pktbuf_copy_einval2),
#endif
new_TestFixture(test_pktbuf_copy_data_len_too_long),
new_TestFixture(test_pktbuf_copy_data_len_too_long2),
new_TestFixture(test_pktbuf_copy_data_len_0),
Expand Down

0 comments on commit e5e3f4e

Please sign in to comment.