usp10/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2010-06-22 17:50:48 +02:00 committed by Alexandre Julliard
parent 8e7ad19064
commit e39b983f49
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ static void test_ScriptItemize( void )
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pItems is NULL\n");
hr = ScriptItemize(test1, 4, 1, &Control, &State, items, NULL);
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cMaxItems < 2.");
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cMaxItems < 2.\n");
hr = ScriptItemize(test1, 0, 10, NULL, NULL, items, &nItems);
ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cInChars is 0\n");