Commit 3c130309 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

comctl32/tests: Fix a test failure on older comctl32 versions.

parent e58b5349
......@@ -1402,7 +1402,9 @@ static void test_monthcal_monthrange(void)
expect(1752, st_visible[0].wYear);
expect(9, st_visible[0].wMonth);
expect(14, st_visible[0].wDay);
ok(14 == st_visible[0].wDay ||
broken(1 == st_visible[0].wDay), /* comctl32 <= 4.72 */
"Expected 14, got %d\n", st_visible[0].wDay);
expect(1752, st_visible[1].wYear);
expect(9, st_visible[1].wMonth);
......
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