comctl32: Fix a failing test in win9x.

This commit is contained in:
James Hawkins 2008-09-02 22:43:39 -05:00 committed by Alexandre Julliard
parent a9086abac6
commit 99a5afa616
1 changed files with 3 additions and 1 deletions

View File

@ -735,7 +735,9 @@ static void test_columns(void)
/* Check its width */
rc = ListView_GetColumnWidth(hwnd, 0);
ok(rc==10, "Inserting column with no mask failed to set width to 10 with %d\n", rc);
ok(rc==10 ||
broken(rc==0), /* win9x */
"Inserting column with no mask failed to set width to 10 with %d\n", rc);
DestroyWindow(hwnd);
}