kernel32/tests: Remove an unused assignment in the comm test.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Francois Gouget 2019-11-21 15:56:35 +01:00 committed by Alexandre Julliard
parent 6f13ac30b9
commit fb037132fd
1 changed files with 0 additions and 1 deletions

View File

@ -907,7 +907,6 @@ static void test_waittxempty(void)
S(U(ovl_write)).Offset = 0;
S(U(ovl_write)).OffsetHigh = 0;
ovl_write.hEvent = CreateEventW(NULL, TRUE, FALSE, NULL);
before = GetTickCount();
SetLastError(0xdeadbeef);
res = WriteFile(hcom, tbuf, sizeof(tbuf), &bytes, &ovl_write);
ok((!res && GetLastError() == ERROR_IO_PENDING) || (res && bytes == sizeof(tbuf)),