unitests: Adapt to recent API changes.

This commit is contained in:
Uwe Hermann 2014-08-17 17:32:46 +02:00
parent 7754fb4d93
commit 34f4e3b4e4
1 changed files with 2 additions and 2 deletions

View File

@ -88,11 +88,11 @@ END_TEST
/* Check whether sr_output_options_get() works. */
START_TEST(test_output_options)
{
const struct sr_option *opt;
const struct sr_option **opt;
opt = sr_output_options_get(sr_output_find("bits"));
fail_unless(opt != NULL, "Couldn't find 'bits' options.");
fail_unless(!strcmp(opt->id, "width"), "Wrong 'bits' option found!");
fail_unless(!strcmp((*opt)->id, "width"), "Wrong 'bits' option found!");
}
END_TEST