Commit 1571c05a authored by Andrew Nguyen's avatar Andrew Nguyen Committed by Alexandre Julliard

kernel32/tests: Simplify a test function's parameters.

parent c9f116a5
...@@ -173,7 +173,7 @@ static void testCursorInfo(HANDLE hCon) ...@@ -173,7 +173,7 @@ static void testCursorInfo(HANDLE hCon)
ERROR_INVALID_ACCESS, GetLastError()); ERROR_INVALID_ACCESS, GetLastError());
} }
static void testWriteSimple(HANDLE hCon, COORD sbSize) static void testWriteSimple(HANDLE hCon)
{ {
COORD c; COORD c;
DWORD len; DWORD len;
...@@ -407,7 +407,7 @@ static void testWrite(HANDLE hCon, COORD sbSize) ...@@ -407,7 +407,7 @@ static void testWrite(HANDLE hCon, COORD sbSize)
/* FIXME: should in fact insure that the sb is at least 10 character wide */ /* FIXME: should in fact insure that the sb is at least 10 character wide */
ok(SetConsoleTextAttribute(hCon, TEST_ATTRIB), "Setting default text color\n"); ok(SetConsoleTextAttribute(hCon, TEST_ATTRIB), "Setting default text color\n");
resetContent(hCon, sbSize, FALSE); resetContent(hCon, sbSize, FALSE);
testWriteSimple(hCon, sbSize); testWriteSimple(hCon);
resetContent(hCon, sbSize, FALSE); resetContent(hCon, sbSize, FALSE);
testWriteNotWrappedNotProcessed(hCon, sbSize); testWriteNotWrappedNotProcessed(hCon, sbSize);
resetContent(hCon, sbSize, FALSE); resetContent(hCon, sbSize, FALSE);
......
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