Commit 2f8830d5 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

comctl32: Fix a test on locales where default first day of week is not the max value.

parent 5114d652
......@@ -673,7 +673,8 @@ static void test_monthcal_firstDay(HWND hwnd)
if (i == -1){
expect(MAKELONG(fday, FALSE), res);
}else if (i >= 7){
expect(MAKELONG(fday, TRUE), res);
/* out of range sets max first day of week, locale is ignored */
expect(MAKELONG(6, TRUE), res);
}else{
expect(MAKELONG(i, TRUE), res);
}
......
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