Commit b149f3c7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

usp10/tests: Add trailing '\n's to ok() calls.

parent ce9b4baa
......@@ -485,7 +485,7 @@ static void test_ScriptXtoX(void)
hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &psa, &piCP, &piTrailing);
ok(hr == S_OK, "ScriptXtoCP should return S_OK not %d\n", (unsigned int) hr);
ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
ok(piTrailing == TRUE, "Negative iX should return piTrailing=TRUE not %d", piTrailing);
ok(piTrailing == TRUE, "Negative iX should return piTrailing=TRUE not %d\n", piTrailing);
iX = 1954;
cChars = 10;
cGlyphs = 10;
......
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