1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 09:18:56 +00:00

quartz/tests: Fix typo in tests.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
This commit is contained in:
Eric Pouech 2024-06-10 11:49:04 +02:00 committed by Alexandre Julliard
parent 6eac284201
commit 5fb9b19218

View File

@ -46,7 +46,7 @@ static WCHAR *create_file(const WCHAR *name, const char *data, DWORD size)
ok(file != INVALID_HANDLE_VALUE, "Failed to create file %s, error %lu.\n",
wine_dbgstr_w(pathW), GetLastError());
WriteFile(file, data, size, &written, NULL);
ok(written = size, "Failed to write file data, error %lu.\n", GetLastError());
ok(written == size, "Failed to write file data, error %lu.\n", GetLastError());
CloseHandle(file);
return pathW;