Commit 99a5afa6 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

comctl32: Fix a failing test in win9x.

parent a9086aba
...@@ -735,7 +735,9 @@ static void test_columns(void) ...@@ -735,7 +735,9 @@ static void test_columns(void)
/* Check its width */ /* Check its width */
rc = ListView_GetColumnWidth(hwnd, 0); 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); DestroyWindow(hwnd);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment