tests: Drop another obsolete sr_analog_float_to_string() test.

This commit is contained in:
Uwe Hermann 2015-10-25 23:05:49 +01:00
parent a00106b7f8
commit 211cc97471
1 changed files with 0 additions and 10 deletions

View File

@ -124,15 +124,6 @@ START_TEST(test_analog_to_float_null)
} }
END_TEST END_TEST
START_TEST(test_analog_float_to_string_null)
{
int ret;
ret = sr_analog_float_to_string(0, 0, NULL);
fail_unless(ret == SR_ERR_ARG);
}
END_TEST
START_TEST(test_analog_unit_to_string) START_TEST(test_analog_unit_to_string)
{ {
int ret; int ret;
@ -215,7 +206,6 @@ Suite *suite_analog(void)
tc = tcase_create("analog_to_float"); tc = tcase_create("analog_to_float");
tcase_add_test(tc, test_analog_to_float); tcase_add_test(tc, test_analog_to_float);
tcase_add_test(tc, test_analog_to_float_null); tcase_add_test(tc, test_analog_to_float_null);
tcase_add_test(tc, test_analog_float_to_string_null);
tcase_add_test(tc, test_analog_unit_to_string); tcase_add_test(tc, test_analog_unit_to_string);
tcase_add_test(tc, test_analog_unit_to_string_null); tcase_add_test(tc, test_analog_unit_to_string_null);
tcase_add_test(tc, test_set_rational); tcase_add_test(tc, test_set_rational);