Commit aec411ed authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

riched20/tests: wAlignment should be compared to the PFA_ values.

parent 9a934a31
......@@ -8220,7 +8220,7 @@ static void test_alignment_style(void)
pf.cbSize = sizeof(PARAFORMAT2);
pf.dwMask = -1;
SendMessageW(richedit, EM_GETPARAFORMAT, SCF_SELECTION, (LPARAM)&pf);
ok(pf.wAlignment == ES_CENTER, "got %d expected ES_CENTER\n", pf.wAlignment);
ok(pf.wAlignment == PFA_LEFT, "got %d expected PFA_LEFT\n", pf.wAlignment);
DestroyWindow(richedit);
}
......
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