Commit 2dcc8ec0 authored by Noah Berner's avatar Noah Berner Committed by Alexandre Julliard

comctl32/tests: Fix test that fails on Feb 29th.

parent 8c5b08d8
......@@ -469,6 +469,7 @@ static void test_monthcal(void)
ok(limits == GDTR_MIN, "got 0x%08lx\n", limits);
GetSystemTime(st);
st[0].wDay = 25;
st[1] = st[0];
st[1].wYear++;
r = SendMessageA(hwnd, MCM_SETRANGE, 0, (LPARAM)st);
......@@ -480,6 +481,7 @@ static void test_monthcal(void)
/* flags are 0, set min limit */
GetSystemTime(st);
st[0].wDay = 25;
st[1] = st[0];
st[1].wYear++;
......
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