Fix a bug causing one of the unit tests not being run.

This commit is contained in:
Uwe Hermann 2014-11-22 21:07:48 +01:00
parent cc8be68f22
commit 47af616fd7
1 changed files with 1 additions and 1 deletions

View File

@ -70,10 +70,10 @@ Suite *suite_device(void)
tc = tcase_create("sr_dev_inst_user_new");
tcase_add_test(tc, test_user_new);
suite_add_tcase(s, tc);
tc = tcase_create("sr_dev_inst_channel_add");
tcase_add_test(tc, test_channel_add);
suite_add_tcase(s, tc);
return s;