comctl32: Fix a test on locales where default first day of week is not the max value.
This commit is contained in:
parent
5114d652d2
commit
2f8830d55b
|
@ -673,7 +673,8 @@ static void test_monthcal_firstDay(HWND hwnd)
|
||||||
if (i == -1){
|
if (i == -1){
|
||||||
expect(MAKELONG(fday, FALSE), res);
|
expect(MAKELONG(fday, FALSE), res);
|
||||||
}else if (i >= 7){
|
}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{
|
}else{
|
||||||
expect(MAKELONG(i, TRUE), res);
|
expect(MAKELONG(i, TRUE), res);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue