Commit 6d4cf5b2 authored by Torge Matthies's avatar Torge Matthies Committed by Alexandre Julliard

msvcr120/tests: Add missing newlines to messages.

parent a9c357e5
......@@ -1375,7 +1375,7 @@ static void __cdecl chore_proc(_UnrealizedChore *_this)
MSVCRT_bool canceling = call_func1(
p__StructuredTaskCollection__IsCanceling,
chore->chore.task_collection);
ok(!canceling, "Task is already canceling");
ok(!canceling, "Task is already canceling\n");
}
if (!chore->wait_event)
......@@ -1399,7 +1399,7 @@ static void __cdecl chore_proc(_UnrealizedChore *_this)
MSVCRT_bool canceling = call_func1(
p__StructuredTaskCollection__IsCanceling,
chore->chore.task_collection);
ok(canceling, "Task is not canceling");
ok(canceling, "Task is not canceling\n");
}
}
......
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