On Sun Jan 7 21:02:31 2024 +0000, Fabian Maurer wrote:
if (sort) todo_wine ok(!strcmp(selected, "string1"), "sort %d - Got %s\n", sort, selected); else ok(!strcmp(selected, "string2"), "sort %d - Got %s\n", sort, selected);
ok(!strcmp(selected, sort ? "string1" : "string2"), "sort %d - Got %s\n", sort, selected);
Like one of those? Or something different?
I would just duplicate test calls.