schedsvc/tests: Don't depend on folder enumeration order.

This commit is contained in:
Alexandre Julliard 2015-02-24 16:11:28 +09:00
parent 3cfbfeca2b
commit 75a2e85a27
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ START_TEST(rpcapi)
ok(count == 1, "expected 1, got %u\n", count);
ok(start_index == 1, "expected 1, got %u\n", start_index);
ok(names != NULL, "names should not be NULL\n");
ok(!lstrcmpW(names[0], Folder1), "expected Folder1, got %s\n", wine_dbgstr_w(names[0]));
ok(!lstrcmpW(names[0], Folder1) || !lstrcmpW(names[0], Folder2), "got %s\n", wine_dbgstr_w(names[0]));
MIDL_user_free(names[0]);
MIDL_user_free(names);